-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (35 loc) · 1.42 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
<!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">
<script src="script.js" defer></script>
<!-- <script src="test.js" defer></script> -->
<title>Etch a Sketch</title>
</head>
<body>
<h1 class="heading">Etch-a-Sketch</h1>
<div class="container">
<div class="containerOne">
<div class="colorPicker">
<div class="round"><input type="color" class="colorPic" name="color ColorPicker" value="#000000"></div>
<input type="button" class="button color focus" value="Color Mode">
</div>
<input type="button" class="button rainbow focus" value="Rainbow Mode">
<input type="button" class="button eraser focus" value="Eraser">
<input type="button" class="button clear active" value="Clear">
<div class="gridSize">
<div class="slidecontainer">
<p class="display"> 30 x 30 </p>
<input type="range" min="10" max="64" value="30" class="slider" id="myRange">
</div>
</div>
</div>
<div class="containerTwo">
<div class="gridBox"></div>
</div>
</div>
</body>
</html>