-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
43 lines (39 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./css/sass/main.css">
<title>Christmas Lights</title>
</head>
<body>
<main class="main_wrapper">
<span>
<div class="main_lights_wrapper">
<div class="lights_wrapper">
<div class="lights red"></div>
<div class="lights orange"></div>
<div class="lights yellow"></div>
<div class="lights green"></div>
<div class="lights blue"></div>
<div class="lights indigo"></div>
<div class="lights purple"></div>
</div>
</div>
<div id="message">Plugging cable to power source...</div>
<div class="btn_wrapper">
<button id="toggle" type="button">START</button>
<button id="increase" disabled>-</button>
<button id="decrease" disabled>+</button>
</div>
<div class="btn_wrapper">
<button id="addLight" class="row-btn">Add Lights</button>
<button id="removeLight" class="row-btn" disabled>Remove Lights</button>
</div>
</span>
<button id="reset">Reset</button>
</main>
<script src="./script.js"></script>
</body>
</html>