-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (60 loc) · 1.75 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
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="shortcut icon"
href="https://cdn-icons-png.flaticon.com/512/522/522118.png"
type="image/x-icon"
/>
<link rel="stylesheet" href="styles.css" />
<title>Etch A Sketch</title>
</head>
<body>
<main id="container">
<section id="menu-section">
<h1>Etch A Sketch</h1>
<label for="grid-sizes" id="select-grid-sizes"
>Select Grid Size:
<select name="grid-sizes" id="grid-sizes">
<option value="4">4 x 4</option>
<option value="8">8 x 8</option>
<option value="12">12 x 12</option>
<option value="16" selected>16 x 16</option>
<option value="24">24 x 24</option>
<option value="32">32 x 32</option>
<option value="40">40 x 40</option>
<option value="64">64 x 64</option>
<option value="96">96 x 96</option>
</select>
</label>
<label for="pen-color"
>Choose Pen Color:
<input type="color" name="pen-color" id="pen-color" />
</label>
<label for="theme-color">
Choose Theme Color:
<input
type="color"
name="theme-color"
id="theme-color"
value="#ffffff"
/></label>
<button id="rainbow-mode">Rainbow Mode</button>
<button id="default-mode">Default Mode</button>
<button id="eraser-btn">Eraser</button>
<button id="clear-btn">Clear</button>
<a
href="https://github.com/selimbiber/Etch-A-Sketch"
title="GitHub: selimbiber"
target="_blank"
>Selim Biber
<img src="./mark-github.svg" alt="github icon" id="github-icon"
/></a>
</section>
<section id="grid-section"></section>
</main>
</body>
<script src="./main.js"></script>
</html>