-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (31 loc) · 1.18 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
<!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="stylesheet" href="index.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=Lato:wght@100;300;400&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="./images/orange.png">
</head>
<body>
<div class="header">
<h1>✏️Etch-a-Sketch✏️</h1>
</div>
<div class="content">
<div class="settings">
<div class="current-color"></div>
<h2>Choose a Color</h2>
<button id="black">Black</button>
<button id="random">Random</button>
<button id="clear">Clear</button>
<div class="slider-container"><input class="slider" type="range" min="1" max="40" value="16"></div>
<h2 class="grid-size">Grid Size: 16x16</h2>
</div>
<div id="gridbox-container"></div>
</div>
<script src="etch.js"></script>
</body>
</html>