-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (65 loc) · 2.31 KB
/
index.html
File metadata and controls
81 lines (65 loc) · 2.31 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<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 href="https://fonts.googleapis.com/css?family=Bubblegum+Sans|Open+Sans" rel="stylesheet">
<link href="https://rawgit.com/ellekasai/twemoji-awesome/gh-pages/twemoji-awesome.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/style.css">
</head>
<body>
<div class="container">
<header>
<h1>Emoji Match Game</h1>
</header>
<section class="score-panel">
<div class="timer-output">
<p>0 : 00</p>
</div>
<ul class="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">0</span> Moves
<div class="restart">
<i class="fa fa-repeat"></i>
</div>
</section>
<ul class="deck">
</ul>
</div>
<div class="modal-back hide">
<div class="modal-box">
<div class="modal-header">
<h1 class="modal-title">You Won!</h1>
</div>
<div class="modal-stats">
<span class="modal-time"></span>
<span class="modal-stars"></span>
<span class="modal-moves"></span>
</div>
<div class="modal-buttons">
<button class="modal-button modal-replay">Play Again</button>
</div>
</div>
</div>
<p class="reset-key">press the "R" key to reset</p>
<footer class="footer">
<p>copyright © 2018 Javier Carrion
<br>All webpages appearing in this work are for demonstration purposes only. Any resemblance to real websites, living
or dead, is purely coincidental.
</p>
</footer>
<script src="assets/js/app.js"></script>
</body>
</html>