-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (34 loc) · 1.26 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
<!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">
<script src="https://kit.fontawesome.com/5ff773556d.js" crossorigin="anonymous"></script>
<script src="script.js" defer></script>
<title>Etch a Sketch</title>
</head>
<body>
<h1>Etch Your Sketch</h1>
<main>
<section class="settings">
<label for="gridLayout">Grid Size:
<input type="range" id="gridLayout" name="gridLayout" min="2" max="64" value="24">
<p class="gridsize"></p>
</label>
<label for="colorpicker"><button class="colorchoice">Color:</button>
<input type="color" id="colorpicker" name="colorpicker" value="#ffffff">
</label>
<button class="rainbow">rainbow</button>
<button class="circle"> circle grids </button>
<button class="toggle"> Toggle gridLines</button>
<button class="eraser"> Eraser </button>
</section>
<div class="container">
</div>
</main>
<footer>
<p>Crafted by Tushar <a href="https://github.com/PinkMoon25" target="_blank"> <i class="fa-brands fa-github"></i></a></p>
</footer>
</body>
</html>