-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<title>Etch-A-Sketch</title>
</head>
<body>
<header>
<h1>Etch-A-Sketch</h1>
</header>
<div class="container">
<div class="menu">
<button class="new green-btn">New Grid</button>
<button class="btn toggle-grid-btn">Show Grid</button>
<button class="black-color btn active">Black</button>
<button class="random-color btn">Random</button>
<button class="btn erase">Erase</button>
</div>
<div class="grid-container">
<div class="grid"></div>
</div>
</div>
<footer>
<a href="https://github.com/Central3/Etch-a-Sketch" target="_blank"><img class="source-code" src="github-icon.png" alt=""></a>
</footer>
<script src="script.js"></script>
</body>
</html>