-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (31 loc) · 931 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Etch-a-Sketch</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="main-container">
<div class="left-column">
<div>
<h1>Etch-a-Sketch</h1>
<p>Click the left mouse button and hold to draw your painting.</p>
</div>
<div class="controls">
<div class="slider">
<label for="vol"></label>
<input type="range" id="vol" name="vol" value="32" min="32" max="100">
</div>
<button class="js-apply-button">Apply Grid size</button>
<button class="js-clear-button clear-button">Clear painting</button>
</div>
</div>
<div class="right-column">
<div class="js-container container"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>