-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
59 lines (58 loc) · 1.31 KB
/
home.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
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<title>Lit Up</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script type="text/javascript" src="js/app.js"></script>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link href="https://fonts.googleapis.com/css?family=Audiowide" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.css">
<h1>LIT UP</h1>
<h3>Just turn off all the lights</h3>
<aside id="left">
<h2>Level<br>
<span id="lvl">1</span>
</h2>
<h2>Moves<br><span id="mvs">0<span></h2>
</aside>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<aside id="right">
<h2 id="reset">Reset</h2>
</aside>
<div id="modal" class="modalStyle">
<p>#WINNING</p>
<button id="replay">Replay</button>
<button id ="next">Next Lvl</button>
</div>
<audio id="audio" src="./sound/pop.wav"></audio>
</head>
<body>
</body>
</html>