forked from udacity/fend-project-memory-game
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
50 lines (42 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Matching Game</title>
<meta name="description" content="">
<link rel="stylesheet prefetch" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<link rel="stylesheet prefetch" href="https://fonts.googleapis.com/css?family=Coda">
<link rel="stylesheet" href="css/sanitize.css">
<link rel="stylesheet" href="css/app.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<div class="container">
<header>
<h1>Matching Game</h1>
</header>
<section class="score-panel">
<ul class="stars" id="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" id="moves"></span> Moves
<span class="timer" id="timer"></span>
<div class="restart" id="restart">
<i class="fas fa-redo"><span class="restart">New Game</span></i>
</div>
</section>
<ul class="deck" id="deck">
</ul>
<dialog class= "winnerMessage" id="winner">
<span id="winnerMessage"></span>
<menu class="winButtons">
<button class="nextGame" id="newGame">Start A New Game</button>
<button class="cancel" id="cancel">Close</button>
</menu>
</dialog>
</div>
<script src="js/app.js"></script>
</body>
</html>