-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (35 loc) · 1.05 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
<html>
<head>
<title>Etch-a-Sketch</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Etch-a-Sketch</h1>
<div class="upperBar">
<div class="sliderMaster">
<div class="sliderTitle">
<p>Grid size:</p>
<div id="gridSize"></div>
</div>
<div class="slidecontainer">
<input type="range" min="1" max="100" value="50" class="slider" id="myRange">
</div>
</div>
<div class="colorSelection">
<div class="colorTitle">
<p>Color selected:</p>
</div>
<div class="colorButtons">
<button id="random"></button>
<button id="black"></button>
<button id="white"></button>
</div>
</div>
</div>
<div class="container">
<div class="sketchField"></div>
<button id="resetButton">Start over again</button>
</div>
</body>
<script src="app.js"></script>
</html>