-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 968 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TOP - Etch A Sketch</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<h1>Etch A Sketch</h1>
</div>
<div class="container">
<h2>🎨 Choose a color and start painting 🎨</h2>
<!-- JavaScript element injection -->
<div class="options-buttons">
<!-- Buttons for options -->
<button id="size-btn">RESIZE</button>
<button id="rainbow-btn">RAINBOW</button>
<button id="black-btn">BLACK</button>
<button id="reset-btn">RESET</button>
</div>
</div>
<div class="footer">
<h1>Copyright 2023 | @<a href="https://github.com/Krauzer94/odin-etch-a-sketch" target="_blank">Krauzer94</a></h1>
</div>
<script src="script.js"></script>
</body>
</html>