-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (40 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="styles.css" />
<script
src="https://kit.fontawesome.com/09d77b406d.js"
crossorigin="anonymous"
></script>
<title>Etch-a-Sketch</title>
</head>
<body>
<h1>Etch-a-Sketch</h1>
<div class="layout">
<div id="grid-container"></div>
<div class="controls">
<input type="color" id="color-picker" value="#000000" />
<label for="color-picker"
><i class="fa-solid fa-arrow-up"></i> Colors</label
>
<button id="rainbow-mode">Rainbow Mode</button>
<button id="eraser-btn">Eraser</button>
</div>
</div>
<div class="grid-controls">
<button id="clear-btn">Clear</button>
<input type="range" id="grid-size" min="2" max="64" value="16" />
<label for="grid-size"
><i class="fa-solid fa-arrow-left"></i> Grid Size</label
>
</div>
<footer>
<a href="https://github.com/DeathAwaits666/Etch-a-Sketch"
>By DeathAwaits 2024 <i class="fa solid fa-github"></i
></a>
</footer>
<script src="script.js"></script>
</body>
</html>