-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (33 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Etch a Sketch</title>
<script src="./script.js" defer></script>
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<h1>ETCH A SKETCH</h1>
<div class="main">
<!-- div grid is empty because we will fill it through DOM in the script file. -->
<div class="grid"></div>
<div class="toolbox">
<input type="color" id="color-picker" name="picker" value="#000000" />
<button class="btn button-clicked" id="color">Color</button>
<button class="btn" id="rainbow">Rainbow</button>
<button class="btn" id="eraser">Eraser</button>
<button class="btn" id="clear">Clear</button>
<div class="range-container">
<input type="range" name="range" id="range" min="8" value="8" max="64" step="2">
<p class="range-value">8x8</p>
</div>
</div>
</div>
<div class="find-me">
<p> Built and designed by pvdevs</p>
<a href="https://github.com/pvdevs" target="_blank"><i class="fa fa-github" style="font-size:32px"></i></a>
</div>
</body>
</html>