-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (44 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"
rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css?family=Parisienne" rel="stylesheet"/>
<link rel="stylesheet" href="styles.css">
<title>Etch-a-Sketch</title>
<link rel="browser icon" href="pencil.png" />
</head>
<body>
<header>
<h1 class="title">Etch-a-Sketch</h1>
</header>
<main>
<div class="settings">
<input id="colorPicker" type="color" value="#333333" />
<button id="colorButton">Color</button>
<button id="rainbowButton">Rainbow</button>
<button id="eraserButton">Eraser</button>
<button id="clearButton">Clear</button>
<input id="sizeSlider" type="range" value="64" min="1" max="100">
<div id="sizeValue" class="sive-value">64 x 64</div>
</div>
<div id="container" class="container">
<div id="grid" class="grid"></div>
<div id="scrollWheels" class="scrollWheels">
<div class="wheel"></div>
<div class="wheel"></div>
</div>
</div>
</main>
<footer class="footer">
<p>Copyright © 2021 Grieze</p>
<a href="https://github.com/grieze" target="_blank">
<img class="fab fa-github" src="github_PNG40.png" width="24" height="24">
</a>
</footer>
<script src="grids.js"></script>
</body>
</html>