-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.html
35 lines (35 loc) · 933 Bytes
/
game.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="game.css">
<title>Memory Match Game</title>
</head>
<body>
<table id="gridtable">
<tr>
<td id="grid1"></td>
<td id="grid2"></td>
<td id="grid3"></td>
<td id="grid4"></td>
</tr>
<tr>
<td id="grid5"></td>
<td id="grid6"></td>
<td id="grid7"></td>
<td id="grid8"></td>
</tr>
<tr>
<td id="grid9"></td>
<td id="grid10"></td>
<td id="grid11"></td>
<td id="grid12"></td>
</tr>
</table>
<button id="restart">Restart</button>
<h2 id="timer"></h2>
<script src="game.js"></script>
</body>
</html>