-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 loc) · 1.42 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
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="style.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Tiny5&display=swap" rel="stylesheet">
<script src="script.js" defer></script>
<title>Etch-A-Sketch</title>
</head>
<body>
<header>
<div id="colourControls">
<label for="colour">Choose type: </label>
<select name="colour" id="colour">
<option value="mono">Monochrome</option>
<option value="colour">Colourful</option>
</select>
</div>
<div id="tintControls">
<label for="tint">Add a gradual tint? </label>
<select name="tint" id="tint">
<option value="no">No</option>
<option value="yes">Yes</option>
</select>
</div>
<div id="controls">
<label for="selectedSquare">Choose how many square per side: </label>
<select name="selectedSquare" id="selectedSquare">
</select>
</div>
</header>
<main>
<h1>ETCH-A-SKETCH</h1>
<div id="container"></div>
<button id="reset">Reset</button>
</main>
</body>
</html>