-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<title>Etch-a-Sketch</title>
<link rel="stylesheet" href="styles.css" type="text/css">
</head>
<main>
<body>
<div id="etch"></div>
<div id="options">
<div id="config">
<div id="table-properties">
<label for="rows">Rows</label>
<input type="number" id="rows" min="0" max="250" value="16">
<label for="columns">Columns</label>
<input type="number" id="columns" min="0" max="250" value="16">
</div>
<div id="color-config">
<input type="radio" id="random" name="color-type" checked>
<label for="random">Random Colors</label>
<input type="radio" id="fixed" name="color-type">
<label for="fixed">Fixed Colors</label>
<input type="color" id="color">
</div>
</div>
<button id="save">Save configuration</button>
<script src="scripts.js"></script>
</body>
</main>
</html>