-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 1.49 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
<!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="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"
rel="stylesheet"
/>
<link rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" href="style.css" />
<script
src="https://kit.fontawesome.com/4c536a6bd5.js"
crossorigin="anonymous"
></script>
</head>
<body>
<header class="header">
<h1 class="title">Etch-a-sketch</h1>
</header>
<main class="main">
<div class="settings">
<input id="colorPicker" type="color" value="#333333" />
<button id="colorBtn">Color mode</button>
<button id="rainbowBtn">Rainbow mode</button>
<button id="eraserBtn">Eraser</button>
<button id="clearBtn">Clear</button>
<div id="sizeValue" class="size-value">16 x 16</div>
<input id="sizeSlider" type="range" value="16" min="1" max="64" />
</div>
<div id="grid" class="grid"></div>
</main>
<footer class="footer">
<p>
Copyright ©
<script>
document.write(new Date().getFullYear())
</script>
Ehspresso
</p>
</footer>
<script src="script.js"></script>
</body>
</html>