-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (45 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="An Etch-A-Sketch website for The Odin Project" />
<title>Odin Etch-A-Sketch</title>
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header><h1>Etch-A-Sketch</h1></header>
<main>
<article class="container">
<section id="top-controls">
<button class="btn btn-black" id="black-btn">
<span class="shadow"></span>
<span class="edge"></span>
<span class="front">Black</span>
</button>
<button class="btn btn-rainbow" id="rainbow-btn">
<span class="shadow"></span>
<span class="edge"></span>
<span class="front">Rainbow</span>
</button>
</section>
<section id="grid"></section>
<section id="bottom-controls">
<div class="size-container">
<input type="range" id="size-slider" min="1" max="100" />
<label for="size-slider" id="size-value"></label>
</div>
<button class="btn btn-erase" id="erase-btn">
<span class="shadow"></span>
<span class="edge"></span>
<span class="front">Erase</span>
</button>
</section>
</article>
</main>
<footer>Made with<b class="heart"> ♥ </b> by <b> Saikrishnan K</b></footer>
</body>
<script src="index.js"></script>
</html>