forked from udacity/fend-project-memory-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (46 loc) · 1.64 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<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=Nunito">
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="css/responsive.css">
</head>
<body>
<div class="container">
<header>
<h1>Memory Game</h1>
</header>
<section class="score-panel">
<span class="timer"></span>
<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 id="moves" ></span> Moves
<button class="restart">
<i class="fa fa-repeat"></i>
</button>
</section>
<ul class="deck">
</ul>
<div class="message">
<div class="modal">
<h1>Congradulations!</h1>
<p>Your score: <br><span id="finalMoves"></span> moves, within: <span id="finalTime"></span> seconds, and a star score of <span id="starScores"></span></p>
</div>
<button id="newGameButtn" class="newGame">
Play again </a>
</button>
</div>
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>