-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
32 lines (32 loc) · 854 Bytes
/
Copy pathgame.html
File metadata and controls
32 lines (32 loc) · 854 Bytes
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
<!DOCTYPE html>
<head>
<title></title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>My Game!</h1>
<div id="scoreboard">
Matched: <span id="matched">0</span>
<br>
Missed: <span id="missed">1</span>
<div id="gameboard">
<span class="red"></span>
<span class="blue"></span>
<span class="red"></span>
<span class="blue"></span>
<br>
<span class="red"></span>
<span class="blue"></span>
<span class="red"></span>
<span class="blue"></span>
<br>
<span class="red"></span>
<span class="blue"></span>
<span class="red"></span>
<span class="blue"></span>
</div>
<a href="index.html">Go back home</a>
<script src="js/jquery-2.1.0.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>