-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·54 lines (43 loc) · 1.89 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
<!doctype html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<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://cdn.jsdelivr.net/npm/[email protected]/animate.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet">
<link rel="stylesheet" href="css/app.css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<div class="overlay">
<div class="overlay-content">
<section class="switch-msg"></section>
<ul class="stars"></ul>
<h4>Done with <span class="moves">0</span> Moves in <span class="timer"><span class="timer-minutes">0</span>:<span class="timer-seconds">00</span></span></h4>
<button class="restart"><i class="fa fa-repeat"></i> Again</button>
</div>
</div>
<div class="container">
<header>
<h1 class="title">Memory Game <img src="img/animal/pelican.svg" alt="" width="50"></h1>
</header>
<section class="score-panel">
<ul class="stars"></ul>
<span class="moves">0</span> Moves
<span class="timer"><span class="timer-minutes">0</span>:<span class="timer-seconds">00</span></span>
<div class="restart">
<i class="fa fa-repeat"></i> Restart
</div>
</section>
<ul class="deck"></ul>
<footer>
<p>Site design + code © 2018 YUNKI LIN</p>
<p>Icons are from <a href="https://www.flaticon.com/" title="Flaticon" target="_blank">Flaticon</a></p>
</footer>
</div>
<script src="js/app.js"></script>
</body>
</html>