-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 978 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<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 rel="stylesheet" href="style.css">
<link rel="icon" href="favicon.png">
<script src="script.js" defer></script>
</head>
<body>
<header>
<img src="favicon.png" alt="">
<h1>Pixetch</h1>
</header>
<div class="main">
<div class="settings">
<input id="colorPicker" type="color" value="#333333">
<button id="clearBtn">Clear</button>
<div id="sizeValue">24 x 24</div>
<input id="sizeSlider" type="range" value="24" min="8" max="36">
</div>
<div id="container"></div>
</div>
</body>
</html>