-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 1.25 KB
/
Copy pathindex.html
File metadata and controls
32 lines (31 loc) · 1.25 KB
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Etch-a-Sketch</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Etch-a-Sketch</h1>
<div id="middleBlock">
<div class="sidebars" id="colorPick">
<fieldset><legend>Choose your Color</legend>
<div id="colorBtns">
<div><input type="radio" id="black" name="colorBtn" value="black" checked>
<label for="black">Black</label></div>
<div><input type="radio" id="blue" name="colorBtn" value="blue" >
<label for="blue">Blue</label></div>
<div><input type="radio" id="red" name="colorBtn" value="red">
<label for="red">Red</label></div>
<div><input type="radio" id="eraser" name="colorBtn" value="eraser">
<label for="eraser">Eraser</label></div>
</div></fieldset>
</div>
<div id="grid"></div>
<div class="sidebars"><legend>Idea Notepad</legend><textarea id="textfield"></textarea></div>
</div>
<button id="reset" onclick="resetGrid()">RESET</button><p>Tip: Press the "Reset"-Button to choose your Grid-Size!</p>
<script src="script.js"></script>
</body>
</html>