-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·56 lines (52 loc) · 2.04 KB
/
index.html
File metadata and controls
executable file
·56 lines (52 loc) · 2.04 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Matching Game</title>
<meta name="description" content="PLaying this game will improve your memory">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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">
<link rel="stylesheet" type="text/css" href="css/csshake-horizontal.css">
</head>
<body>
<div class="container">
<div class="modal-background hide">
<div class="modal-content">
<div class="modal-header">
<span class="win-head">YOU WIN!</span>
<span class="modal-close close-modal">X</span>
</div>
<div class="modal-stats">
<h3>Moves= <span class="show-moves"></span></h3>
<h3>Time= <span class="show-time"></span></h3>
<h3>Stars= <span class="show-stars"></span></h3>
</div>
<div class="modal-buttons">
<button class="cancel-modal button-modal">Cancel</button>
<button class="replay-modal button-modal">Replay</button>
</div>
</div>
</div>
<header>
<h1>Matching Game</h1>
</header>
<section class="score-panel">
<ul class="stars">
<li><i class="fa fa-star star1"></i></li>
<li><i class="fa fa-star star2"></i></li>
<li><i class="fa fa-star star3"></i></li>
</ul>
<span class="moves">0</span> Moves
<div class="timer"></div>
<div class="restart">
<i class="fa fa-repeat"></i>
</div>
</section>
<ul class="deck"></ul>
</div>
<script src="js/app.js"></script>
</body>
</html>