-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (31 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Etch a Sketch</title>
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body>
<h1>Etch a Sketch</h1>
<h3 class="grid-size-heading"></h3>
<div class="main-container">
<div class="colors-container">
<div class="color-box" id="black"></div>
<div class="color-box selected" id="white"></div>
<div class="color-box" id="red"></div>
<div class="color-box" id="green"></div>
<div class="color-box" id="blue"></div>
<div class="color-box" id="yellow"></div>
<div class="color-box" id="brown"></div>
</div>
<div class="grid-container">
<div class="grid"></div>
<div class="button-container">
<button class="change-grid-size-button">Change Grid Size</button>
<button class="reset-button">Clear</button>
</div>
</div>
</div>
</body>
</html>