-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (27 loc) · 983 Bytes
/
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
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css" type="text/css">
<link href="https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&display=swap" rel="stylesheet">
<title>Etch-A-Sketch</title>
</head>
<body>
<div id="container-buttons">
<h1 id="main-heading">Etch-A-Sketch</h1>
<button id="grid-lines">Show Grid</button>
<button id="grid-size">Change Grid Size</button>
<button id="random-colors">Random Colors</button>
<button id="erase">Clear Grid</button>
</div>
<div id="container-color">
<h2>Choose Color:</h2>
<input id="color-picker" name="Color Picker" type="color" value="#000000">
<p id="color-value"></p>
</div>
<div id="container">
</div>
<script src="script.js"></script>
</body>
</html>