-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.47 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
<!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="style.css">
</head>
<body>
<div id="header">
<h1>Etch-a-sketch</h1>
<div id="form" class="form">
<p>New grid size:</p>
<input type="text" id="user-num" class="user-num">
<p id="copy-input"></p>
<button id="user-sub" class="user-sub">Submit</button>
</div>
<p id="prompt"></p>
<div id="btns">
<form id=btn-box>
<input type="radio" id="red-pen" name="pen" value="red-pen"> <label for="red-pen">Red</label>
<input type="radio" id="black-pen" name="pen" value="black-pen"> <label for="black-pen">Black</label>
<input type="radio" id="blue-pen" name="pen" value="blue-pen"> <label for="blue-pen">Blue</label>
<input type="radio" id="rainbow" name="pen" value="rainbow"> <label for="rainbow">Rainbow</label>
<input type="radio" id="eraser" name="pen" value="eraser"> <label for="eraser">Eraser</label>
</form>
<button id="clear-btn">Clear</button>
</div>
<div class="box">
<div class="container"></div>
</div>
</div>
<div id="footer">
<p>Powered by The Odin Project.</p>
</div>
<script src="app.js"></script>
</body>
</html>