-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 776 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 776 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<main>
<div>
<button class="btns red" id="red">Red button</button>
<button class="btns green" id="green">Green button</button>
<button class="btns blue" id="blue">Blue button</button>
</div>
<div class="result">
<p id="numResult"></p>
<p id="stringResult">Waiting for button click to show color...</p>
</div>
</main>
<script type="module" src="js/app.js"></script>
<script type="module" src="js/helpers.js"></script>
</body>
</html>