-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (54 loc) · 1.43 KB
/
index.html
File metadata and controls
59 lines (54 loc) · 1.43 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1">
<title>Project</title>
<!-- Inline scripts are forbidden in Firefox OS apps (CSP restrictions),
so we use a script file. -->
<script src="main.js" defer></script>
<script src="game.js" defer></script>
<link rel="stylesheet" type="text/css" href="index.css" />
</head>
<body>
<!-- This code is in the public domain. Enjoy! -->
<table id="table" height="450px" width="450px" border="1px">
<tr>
<td id = "1"></td>
<td id = "2"></td>
<td id = "3"></td>
<td id = "4"></td>
<td id = "5"></td>
</tr>
<tr>
<td id = "6"></td>
<td id = "7"></td>
<td id = "8"></td>
<td id = "9"></td>
<td id = "10"></td>
</tr>
<tr>
<td id = "11"></td>
<td id = "12"></td>
<td id = "13"></td>
<td id = "14"></td>
<td id = "15"></td>
</tr>
<tr>
<td id = "16"></td>
<td id = "17"></td>
<td id = "18"></td>
<td id = "19"></td>
<td id = "20"><img></td>
</tr>
<tr>
<td id = "21"></td>
<td id = "22"></td>
<td id = "23"></td>
<td id = "24"></td>
<td id = "25"></td>
</tr>
</table>
<button id="btn">Restart</button>
</body>
</html>