-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (44 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Memory Game</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet prefetch" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div id="container">
<header id="game-title">
<h1>Shell Match</h1>
</header>
<section class="score-panel">
<ul class="stars">
<li><img class="star" src="img/icons8-starfish-50.png"></li>
<li><img class="star" src="img/icons8-starfish-50.png"></li>
<li><img class="star" src="img/icons8-starfish-50.png"></li>
</ul>
<span class="moves">0</span> Moves
<span class="timer"></span>
<span onclick="location.reload()" class="restart">
<i class="fa fa-repeat"></i>
</span>
</section>
<div id="game-board">
</div>
<div id="congrats" class="congrats-modal">
<div class="modal-content">
<span class="modal-close">X</span>
<h1>You Win!</h1>
<h3>Your Moves</h3>
<span id="show-moves">0</span> Moves
<h3>Your Time</h3>
<div id="final-time"></div>
<ul id="star-rating"></ul>
<button onclick="location.reload()" class="restart">Play Again</button>
</div>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>