-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (44 loc) · 1.35 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
<!DOCTYPE html>
<!--
Created By: Levi Butcher
Project Idea from Odin Project
-->
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Etch-a-Sketch</title>
<link rel="stylesheet" href="styles.css">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<header>
<h1>Etch-a-Sketch</h1>
</header>
<main>
<section id="etch-a-sketch">
<div class="container">
<!-- div squares added here -->
</div>
<div id="lightenKnob" class="knob knob-left">
<span class="leftText">Light</span>
<span class="rightText">Dark</span>
<div class="mark face-right"></div>
</div>
<div id="colorKnob" class="knob knob-right">
<span class="leftText">Color</span>
<span class="rightText">Black</span>
<div class="mark face-left"></div>
</div>
</section>
<section id="info">
<h2>Current Grid Size: <span id="size">16 x 16</span></h2>
<div>
<label for="colorPercentage">Color Percentage</label>
<input id="colorPercentage" type="range" name="colorPercentage" value="0.1" min="0" max="1" step="0.1" list="tickmarks"/>
</div>
<button id="resize" type="button" name="button">Resize</button>
<button id="clear" type="button" name="button">Clear</button>
</section>
</main>
</body>
</html>