-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (32 loc) · 1013 Bytes
/
index.html
File metadata and controls
34 lines (32 loc) · 1013 Bytes
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
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<title>RoomCount</title>
</head>
<body>
<div class="lights">
<div id="red"></div>
<div id="orange">
<p id="counter">20</p>
</div>
<div id="green"></div>
</div>
<footer>
<div class="controls">
<button id="decrement" type="button">
<i class="material-icons">arrow_downward</i>
</button>
<button id="increment" type="button">
<i class="material-icons">arrow_upward</i>
</button>
</div>
</footer>
<script src="scripts/colorChanger.js"></script>
</body>
</html>