-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (51 loc) · 2.22 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
63
64
65
<!DOCTYPE html>
<html>
<head>
<!-- Meta information for the page -->
<meta charset="utf-8">
<title>Etch-A-Sketch</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- External stylesheet for styling the page -->
<link rel="stylesheet" href="style.css">
<!-- Asynchronous script for loading the JavaScript file -->
<script src="./script.js" async defer></script>
</head>
<body>
<!-- Main container for the Etch-A-Sketch app -->
<div class="main-container">
<!-- Container for user inputs -->
<div class="user-container">
<!-- Input field for number of squares per side -->
<div class="user-container-input">
<input name="user-selection-squares" id="user-selection-squares" style="width: 220px;"
placeholder="Enter the number of squares per side">
<!-- Note to the user about the maximum number of squares they can input -->
<label><em><small> (Please note that the maximum number of squares you can input is 100.)
</small></em></label>
</div>
<br>
<!-- Button for setting the pen color to black -->
<div class="user-container-black-pen">
<input type="button" id="user-color-squares-black" value="Color Black">
</div>
<br>
<!-- Button for setting the pen color to a random color -->
<div class="user-container-random-color-pen">
<input type="button" id="user-color-squares-random" value="Color Random">
</div>
<br>
<!-- Button for setting the pen color to white (to erase) -->
<div class="user-container-white-pen">
<input type="button" id="user-color-squares-white" value="Eraser">
</div>
<br>
<!-- Button for clearing the Etch-A-Sketch -->
<div class="user-container-clear">
<input type="button" id="user-clear-squares" value="Clear Etch-A-Sketch">
</div>
</div>
<!-- Container for the grid of squares -->
<div class="flex-container"></div>
</div>
</body>
</html>