-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (26 loc) · 1.04 KB
/
index.html
File metadata and controls
31 lines (26 loc) · 1.04 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Etch-a-Sketch</title>
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="etch-a-sketch.js" defer></script>
</head>
<body>
<h1 class="header">Etch-a-Sketch</h1>
<main class="main">
<div class="buttons-container">
<input id="colour-picker" type="color" value="#333333"/>
<button type="button" id="colour-button">Use Pen</button>
<button type="button" id="erase-button">Use Eraser</button>
<button type="button" id="clear-button">Clear Grid</button>
<h3 id="size-text">16 x 16</h3>
<input id="size-slider" type="range" value="16" min="1" max="64" />
</div>
<div class="grid-container" id="grid-container"></div>
</main>
<div class="footer-container">
<h3 class="footer-text">Copyright © 2021 Tommy Mapp</h3>
</div>
</body>
</html>