-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.21 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">
<title>Etch-a-sketch</title>
<link rel="stylesheet" href="style.css">
<script src="grid.js" defer></script>
<link rel="icon" href="./img/colored-pencils.png" type="image/png">
</head>
<body>
<h1 id="header">
<img src="./img/colored-pencils.png" alt="colored-pencils img" class="logo">
Etch-a-sketch
</h1>
<div id="container">
<div id="settings">
<lable for="colorPicker"></lable>
<input type="color" id="colorPicker">
<button id="colorModeBtn">Color Mode</button>
<button id="randomBtn">Rainbow Mode</button>
<button id="eraserBtn">Eraser</button>
<button id="darkShadeBtn">Gray Scale</button>
<button id="clearBtn">Clear</button>
<button id="sizeBtn">Grid Size</button>
</div>
<div id="grid"></div>
</div>
<div id="footer">
Copyright © Shree 2023
<a href="https://github.com/Shree-77" target="_blank">
<img src="./img/github.png" alt="github icon">
</a>
</div>
</body>
</html>