-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.04 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
<!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="style.css" />
<title>Etch A Sketch</title>
</head>
<body>
<div class="header">
<header>Etch A Sketch</header>
</div>
<div class="container"></div>
<div class="buttons">
<div class="left">
<div id="colorSelection">
<input type="color" id="pen" name="Choose" value="#000" />
<label id="penTitle" for="pen">Color</label>
</div>
</div>
<div class="mid">
<h1>Resolution</h1>
<div class="slidecontainer">
<input
type="range"
id="gridSize"
name="size"
min="2"
max="100"
value="8"
/>
</div>
</div>
<div class="right"><button id="reset">Reset</button></div>
</div>
<div class="footer">Created By @ayush_anilan</div>
<script src="index.js"></script>
</body>
</html>