-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (46 loc) · 1.86 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
<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 type="image/png" sizes="96x96" rel="icon" href="./assets/favicon/icons8-paint-brush-96.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Kode+Mono:wght@400..700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="title">Etch-a-Sketch</div>
<div class="container">
<div class="menu">
<div>
<input type="text" id="gridsize" placeholder="Grid Size">
<button class="gridsize">Enter</button>
</div>
<button class="clear">Clear</button>
<button class="gridStatus">Toggle Grid</button>
<button class="✏️ pencil">Pencil</button>
<button class="eraser">Eraser</button>
<button class="rainbow">Rainbow</button>
<div class="colorPalette">
<label for="favcolor">Select your favorite color:</label>
<input type="color" id="favcolor" value="black">
</div>
</div>
<div class="grid"></div>
</div>
<footer>
Made By Onkar Mendhapurkar
<a href="https://www.linkedin.com/in/onkarmendhapurkar/">
<img src="./assets/images/linkedin (1).png" alt="LinkedIn" class="social-icon">
</a>
<a href="https://github.com/onkar69483">
<img src="./assets/images/github.png" alt="GitHub" class="social-icon">
</a>
<a href="https://www.youtube.com/channel/UCK4ijj-RTWKFb1gyTpa1xSg">
<img src="./assets/images/youtube.png" alt="Youtube" class="social-icon">
</a>
</footer>
<script src="script.js"></script>
</body>
</html>