-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (56 loc) · 1.84 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!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">
<link rel="stylesheet" href="style.css">
<title>Etch-a-Sketch</title>
</head>
<body>
<div class="full">
<div id="tool-selection">
<div class="tool" id="tool1">
<img id="tool1"src="assets/pen.svg">
</div>
<div class="tool" id="tool2">
<img id ="tool2" src="assets/eraser.svg">
</div>
<div class="tool" id="tool3">
<img id ="tool3" src="assets/bucket.svg">
</div>
<div class="tool" id="tool4">
<img id ="tool4"src="assets/eyedropper.svg">
</div>
</div>
<div class="palette">
<h1>
Etch-a-Sketch
</h1>
<div id="wrapper">
<div id="container">
</div>
</div>
<div class="slidecontainer">
<input type="range" min="4" max="50" value="20" class="slider" id="myRange">
</div>
</div>
<div id="color-selection">
<div class="color" id="color1"></div>
<div class="color" id="color2"></div>
<div class="color" id="color3"></div>
<div class="rainbow-box">
<input type="color" id="color-picker">
<div class="color" id="color4"></div>
</input>
</div>
</div>
</div>
<div class="footer">
<a class ="footer-text"href="https://github.com/JusGu/etch-a-sketch" target="_blank">
Check out the repo on GitHub!
</a>
</div>
</body>
<script src="script.js"></script>
</html>