-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.htm
More file actions
executable file
·64 lines (53 loc) · 2.33 KB
/
index.htm
File metadata and controls
executable file
·64 lines (53 loc) · 2.33 KB
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
<!DOCTYPE HTML>
<html>
<head>
<title>Test</title>
<meta charset = "utf-8" />
<script src = "Grid.js" type = "text/javascript"></script>
<script src = "main.js" type = "text/javascript"></script>
<link type = "text/css" rel = "stylesheet" href = "main.css" />
</head>
<body>
<div id="wrapper">
<article>
<header>
<h1>2048</h1>
</header>
<section>
<h2> </h2>
<form name="setting" id="setting" method = "get">
<table id="formTable">
<tr>
<td><label for="rows">Rows: </label></td>
<td><input id = "rows" min = "4" max = "32" name = "rows" type = "number" size="2" value = "4" /></td>
<td><label for="columns">Columns: </label></td>
<td><input id = "columns" min = "4" max = "32" name = "columns" type = "number" size="2" value = "4" /></td>
<td><label for="target">Target: </label></td>
<td><input id = "target" min="4" max = "4096" name = "target" type = "number" size="2" value = "2048" disabled /></td>
<td><span class = "numberControl">
<button class = "numberControl" type="button" name = "up">Λ</button>
<br />
<button class = "numberControl" type="button" name = "down">V</button>
</span></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td><button id = "new" type="submit">New</button></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
<table id = "grid"></table>
</form>
</section>
<footer>
An implementation by Sannidhya Shukla <br/>
ALL RIGHTS RESERVED © 2015
</footer>
</article>
</div>
</body>
</html>