-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (48 loc) · 1.72 KB
/
index.html
File metadata and controls
64 lines (48 loc) · 1.72 KB
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
59
60
61
62
63
64
<!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">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<div class="container">
<header>
<h1>Schmiede Matching Game</h1>
</header>
<section class="scorePanel">
<ul class="stars">
<li><i class="fa fa-star" id="first"></i></li>
<li><i class="fa fa-star" id="second"></i></li>
<li><i class="fa fa-star" id="third"></i></li>
</ul>
<span class="moves">0</span> <span id="moveText">Moves</span>
<span>Time:</span>
<span class="timer">0</span> s
<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">
<span class="close">×</span>
<h1>Congratulations you made it!</h1>
<h3>Your time: <span class="seconds"></span> seconds</h3>
<h3>Total moves: <span class="totalMoves"></span> and rating: <span class="rating"></span><i class="fa fa-star"></i> </h3>
<button type="button" class="button" id="playAgain">
Play again!
</button>
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>