-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (38 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Etch-a-sketch</title>
<link rel="stylesheet" href="styles.css">
<script defer src="script.js"></script>
</head>
<body>
<header>
<h1>Etch-a-sketch</h1>
</header>
<div class="content">
<div class="settings">
<div class="color">
<label for="picker"></label>
<input id="picker" type="color" value="#000000">
</div>
<div class="buttons">
<button id="clear" class="type button">Clear Mode</button>
<button id="random" class="type button">Rainbow Mode</button>
<button id="erase" class="type button">Erase</button>
<button id="small" value="16" class="size button">16x16</button>
<button id="medium" value="32" class="size button">32x32</button>
<button id="large" value="64" class="size button">64x64</button>
</div>
</div>
<div class="container">
</div>
</div>
<footer>
<p>Created by MartinPit <a class="github" href="https://github.com/MartinPit">
<i class="fab"></i>
</a>
</p>
</footer>
</body>
</html>