-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (45 loc) · 1.41 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
<html>
<meta>
<script language="JavaScript" src="Game.js" defer></script>
</meta>
<head>
</head>
<body>
<!--<h1>@)$*(2048 Game)</h1>-->
<table cellspacing="15px">
<tr>
<td>
<label>Height</label>
</td>
<td>
<input id="Height" type="text" value="256" oninput="ChangeEventHandler();"></input>
</td>
<td>
<label>Columns</label>
</td>
<td>
<input id="ColumnsCount" type="text" value="4" oninput="ChangeEventHandler();"></input>
</td>
</tr>
<tr>
<td>
<label>Width</label>
</td>
<td>
<input id="Width" type="text" value="256" oninput="ChangeEventHandler();"></input>
</td>
<td>
<label>Rows</label>
</td>
<td>
<input id="RowsCount" type="text" value="4" oninput="ChangeEventHandler();"></input>
</td>
</tr>
<tr>
<td>
<button onclick="RestartGameManual();">Restart</button>
</td>
</tr>
</table>
</body>
</html>