-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 835 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Arcade Clone</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet prefetch" href="https://fonts.googleapis.com/css?family=Coda">
</head>
<body>
<div class="modal-bgd hide">
<div class="modal-body">
<div class="modal-heading">
<h1 class="modal-title">Congrats, you won!</h1>
</div>
<div class="modal-stats">
<span class="modal-time"></span>
<span class="modal-moves"></span>
<span class="modal-stars"></span>
</div>
<div class="modal-buttons">
<button id="replay">Replay</button>
</div>
</div>
</div>
<script src="js/resources.js"></script>
<script src="js/app.js"></script>
<script src="js/engine.js"></script>
</body>
</html>