-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (33 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<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" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/query.css" />
<script src="./script.js" defer></script>
<title>Etch-A-Sketch</title>
</head>
<body>
<section class="container">
<header class="header">
<h1>Etch-A-Sketch</h1>
<section class="button-group">
<button class="sixteen-grid-maker">16/16</button>
<button class="thirthytwo-grid-maker">32/32</button>
<button class="fourtyeight-grid-maker">48/48</button>
<button class="sixtyfour-grid-maker">64/64</button>
</section>
</header>
</section>
<section class="canva-section">
<section class="canva"></section>
</section>
<section class="lower-section">
<label for="colorpicker">Color Picker:</label>
<input class="color-picker" type="color" id="colorpicker" />
<button class="reset">Reset the Canvas !</button>
</section>
</body>
</html>