-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (90 loc) · 4.58 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Scrambler</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="dependencies/normalize.css">
<link rel="stylesheet" href="dependencies/skeleton.css">
<style>
button, input {
height: 22px !important;
line-height: 0px !important;
padding: 0 5px !important;
margin: 0 !important;
}
input {
text-align:left;
text-transform:none;
}
td, th {
padding: 0px 10px !important;
border: 1px solid #fff
}
table, form {
margin: 0px !important;
}
</style>
<!-- JS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script src="scramble.js"></script>
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<!-- <link rel="icon" type="image/png" href="images/favicon.png">
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="row">
<div class="two columns">
<center>
<table>
<tr><td><input type=button value=π onClick=addsymb(this.value),show()><td><input type=button value=τ onClick=addsymb(this.value),show()><td><input type=button value=σ onClick=addsymb(this.value),show()></tr>
<tr><td><input type=button value=χ onClick=addsymb(this.value),show()><td><input type=button value=ν onClick=addsymb(this.value),show()><td><input type=button value=θ onClick=addsymb(this.value),show()></tr>
<tr><td><input type=button value=η onClick=addsymb(this.value),show()><td><input type=button value=ψ onClick=addsymb(this.value),show()><td><input type=button value=λ onClick=addsymb(this.value),show()></tr>
<tr><td><input type=button value=δ onClick=addsymb(this.value),show()><td><input type=button value=φ onClick=addsymb(this.value),show()><td><input type=button value=μ onClick=addsymb(this.value),show()></tr>
<tr><td><input type=button value=α onClick=addsymb(this.value),show()><td><input type=button value=β onClick=addsymb(this.value),show()><td><input type=button value=γ onClick=addsymb(this.value),show()></tr>
</table>
<table>
<tr><td><input type=button value="Next line" onClick=addNewLine(),show()><td></tr>
<tr><td><input id="sup" type=text size=5 ><input type=button value=sup onClick=superScript(),show()></tr>
<tr><td><input id="sub" type=text size=5 ><input type=button value=sub onClick=subScript(),show()></tr>
</table>
</center>
</div>
<div class="four columns">
<button onClick="addsect()" >Add section</button>
<button onClick="removesect()" >Remove section</button>
<form id=qs name=qs>
</form>
<button onClick=prebuild(1)>build</button>
<!-- <button onClick=show()>show</button> -->
<button onClick=scramble()>scramble</button>
<!-- <button onClick=check()>check</button> --> <br> <br>
<button onClick=scramble4()>build * 4</button>
</div>
<div id="tabdiv" class="six columns">
<table width=100% id="maintab" border=1>
<tbody id="tab">
<tr> <td> <center id="center">Question Paper <hr> </center> </tr>
</tbody>
</table>
</div>
<a href="" id="down"></a>
</div>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>