-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (39 loc) · 1.61 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Etch-A-Sketch</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<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=Koulen&display=swap" rel="stylesheet">
<!-- Favicon -->
<link type="image/png" sizes="16x16" rel="icon" href="images/favicon.ico">
</head>
<body>
<h1 class="container">Etch-A-Sketch</h1>
<div id="content" class="container flex">
<div id="control-panel">
<button id="eraser-btn" class="btn">Eraser</button>
<button id="clear-btn" class="btn">Clear</button>
<button id="reset-btn" class="btn">Reset</button>
<p>Pick a color:</p>
<input type="color" id="color-picker">
<p>Squares per side:</p>
<div class="slidecontainer">
<input type="range" min="1" max="64" value="16" class="slider" id="range-slider">
</div>
<p id="slider-caption"></p>
</div>
<div id="grid-square-container">
</div>
</div>
<script src="script.js" defer></script>
</body>
<footer>
Project completed by Sean Marshall © 2022
</footer>
</html>