-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 1.31 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
<!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="stylesheet" href="css/style.css">
</head>
<body>
<header class="header">
<div class="main-title">
<h1 class="title">Etch-a-sketch</h1>
</div>
<div class="logo">
<a href=https://github.com/AbbeyIT target="_blank"> <img id="gh-logo" src="images/github.png" alt="Abbey IT's GitHub Logo"/></a>
</div>
</header>
<main class="main">
<div class="button">
<button id="blackBtn">Black</button>
<button class="rgb" id="rgbBtn">RGB</button>
<button id="eraserBtn">Eraser</button>
<button id="resetBtn">Reset</button>
<div class="colorPicker">
<input type="color" id="color">
<p>choose a color</p>
</div>
<div class="sliderAndValue">
<input id="slider" type="range" min="1" max="100" value="16">
<p class="value">16</p>
</div>
</div>
<div id="grid" class="grid"></div>
</main>
<script src="script/script.js"></script>
</body>
</html>