-
Notifications
You must be signed in to change notification settings - Fork 125
/
index.html
36 lines (33 loc) · 1006 Bytes
/
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
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset=utf-8>
<title>Dino Pairs Game V3</title>
<link rel="stylesheet" href="css/dinogamev2.css" />
</head>
<body>
<section id="gameStats">
<p id="timer">Time: <span class="gameScore"></span></p>
<p id="reset"><a class="gameReset" href="">Reset</a></p>
</section>
<section id="game">
<section id="gameUI">
<section id="gameIntro">
<p><a id="gamePlay" class="button" href="">Play</a></p>
</section>
<section id="gameComplete">
<p id="top">Your time taken was <span class="gameScore"></span>.</p>
<p><a class="gameReset button" href="">Play again</a></p>
</section>
<div id="cards">
<div class="card">
<div class="face front"></div>
<div class="face back"></div>
</div> <!-- .card -->
</div> <!-- #cards -->
</section>
</section> <!-- #game -->
<script src="http://code.jquery.com/jquery-1.7.min.js"></script>
<script src="js/dinopairsv3.js"></script>
</body>
</html>