-
Notifications
You must be signed in to change notification settings - Fork 39
/
index.html
executable file
·43 lines (32 loc) · 1.13 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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Put your js and css references here -->
<link rel="stylesheet" href="styles.css">
<script src="jquery-2.1.0.min.js"></script>
<script src="data.js"></script>
<script src="app.js"></script>
</head>
<body>
<h1>memory<span>kids</span></h1>
<ul class="cards">
<!-- These are just examples, you should load the cards dynamically -->
<li id="0" class="hidden">
<h3>1</h3>
</li>
<li id="1" class="done">
<h3>2</h3>
</li>
<li id="2" class="done">
<h3>3</h3>
</li>
<li id="3" class="hidden">
<h3>4</h3>
</li>
</ul>
<div class="options">
<button class="opt-start">Start Game</button>
</div>
</body>
</html>