-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (43 loc) · 1.44 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>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Coda:400,800" rel="stylesheet prefetch">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css" rel="stylesheet prefetch">
<link href="css/style.css" rel="stylesheet">
<script src="js/jquery-3.2.1.min.js"></script>
<title>Matching Game</title>
</head>
<body>
<div class="container">
<header>
<h1>Matching Game</h1>
</header>
<section class="score-panel">
<ul class="stars">
<li><i id="star-1" class="fa fa-star"></i></li>
<li><i id="star-2" class="fa fa-star"></i></li>
<li><i id="star-3" class="fa fa-star"></i></li>
</ul>
<span class="moves">0</span> Moves
<span class="time"> (0 seconds)</span>
<div class="restart">
<i class="fa fa-repeat"></i>
</div>
</section>
<ul class="deck">
</ul>
</div>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<p>Congratulations! You Won!</p>
<button class="play-again">Play Again?</button>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>