-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
58 lines (52 loc) · 2.02 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Matching Game</title>
<meta name="description" content="">
<link rel="stylesheet prefetch" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
<link rel="stylesheet prefetch" href="https://fonts.googleapis.com/css?family=Coda">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div class="container">
<header>
<h1>Memory Game</h1>
</header>
<section class="score-panel">
<ul class="stars">
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
</ul>
<span class="moves">3</span>
<div class="timer">
<span class="min">00</span>:<span class="sec">00</span>
</div>
<div class="restart">
<i class="fa fa-repeat"></i>
</div>
</section>
<ul class="deck">
</ul>
<section class="final-score modal">
<span class="controls">
<span class="play-again">Play again</span>
<i class="fa fa-times close"></i>
</span>
<h1>Score</h1>
<p class="comment"></p>
<ul class="modal-stars">
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
</ul>
<p>You matched all cards in <span id="total-time">0</span>.</p>
</section>
<div class="backdrop"></div>
<footer>
<p><span class="left">Made by <a href="http://www.renishachristie.com" target="_blank">Renisha Christie</a>. View on <a href="https://github.com/crisner/memory-game" target="_blank">Github.</a></span><span class="right"><a href="https://github.com/crisner/memory-game#credits" target="_blank">Credits</a></span></p>
</div>
<script src="js/app.js"></script>
</body>
</html>