-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (35 loc) · 1.25 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
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Abrar Ahmed">
<meta name="description" content="An Etch-a-Sketch webapp made for the Odin Project">
<link rel="stylesheet" href="./style.css">
<script src="./script.js" defer></script>
<title>Etch-a-Sketch</title>
</head>
<body>
<h1>Etch-a-Sketch</h1>
<div class="content">
<div class="settings-area">
<h2>Settings</h2>
<label class="grid-size-label" for="grid-size-slider">16×16</label>
<input type="range" name="grid-size-slider" id="gridSizeInput"
min="1" max="100" value="16">
<button class="btn btn-suggested" id="resetBtn">Reset</button>
<form class="brush-mode">
<input type="radio" name="brushMode" id="penMode" checked>
<label for="penMode">Pen</label>
<input type="radio" name="brushMode" id="eraserMode">
<label for="eraserMode">Eraser</label>
</form>
<p class="instruction">Press 'd' key to draw.</p>
</div>
<div class="drawing-grid" draggable="false"></div>
</div>
<footer>
<div class="copyright">Copyright© 2022 Abrar Ahmed</div>
</footer>
</body>
</html>