-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (47 loc) · 2.26 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
60
61
62
<!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="style.css">
</head>
<body>
<div class="title-bar">
<h1 class="title">etch-a-sketch</h1>
</div>
<div class="middle-container"> <!--app functionality here-->
<div class="side-bar">
<h3 class="side-bar-title">side bar</h3>
<div>
<form action="app.js" name="options" id="options">
<fieldset>
<legend>Customization</legend>
<label for="sizeSlider">Grid Size</label>
<input type="range" name="size" id="sizeSlider" value="32" min="8" max="64" step="4">
<legend>Style:</legend>
<input type="radio" name="style" class="styleoption" id="blackOnWhite" value="blackOnWhite" checked>
<label for="blackOnWhite">Black On White</label>
<br>
<input type="radio" name="style" class="styleoption" id="whiteOnBlack" value="whiteOnBlack">
<label for="whiteOnBlack">White On Black</label>
<br>
<input type="radio" name="style" class="styleoption" id="gradient" value="gradient">
<label for="gradient">Gradient</label>
<br>
<input type="radio" name="style" class="styleoption" id="bizzare" value="bizzare">
<label for="bizzare">Bizzare!</label>
</fieldset>
</form>
</div>
</div>
<div class="sketch-area">
<h3 class="sketch-header">Etch This Sketch!</h3>
<div class="sketch">
</div>
</div>
</div>
<script src="app.js" defer></script>
</body>
</html>