-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Etch-a-Sketch</title>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div>
<h1>Etch-a-Sketch</h1>
<div class="user-controls">
<label for="pixels_per_side">#pixels per side </label>
<input type="text" id="pixels_per_side" placeholder="16" />
<button id="generateGrid">Generate new grid</button>
<button id="eraser">Eraser: Off</button>
<button id="clear_grid">Clear grid</button>
</div>
</div>
<div class="outer-container">
<div class="inner-container"></div>
</div>
<footer>
Created by skottchen<a
href="https://github.com/skottchen/Etch-a-Sketch"
target="_blank"
>
<img
src="https://img.icons8.com/fluent/48/000000/github.png"
alt="Github"
/>
</a>
</footer>
<script src="./script.js"></script>
</body>
</html>