-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (21 loc) · 820 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
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script src="scripts.js" defer>// don't forget to defer so that the script can affect the HTML page after its done loading</script>
<link rel="stylesheet" href="styles.css">
<title>Etch-A-Sketch</title>
</head>
<body>
<div class="options">
<button id="resetButton" class="btn">Clear</button>
<input autocomplete="off" type="range" min="2" max="100" value="50" class="slider" id="myRange">
<p id="valueOfSlider">50x50</p>
<input autocomplete="off" type="color" id="colorPicker" value="#228D2F">
<a id='linkToGitHub' href="https://github.com/AirTechWick"><img id="gitImg" src="images/github.svg"></a>
</div>
<div class="pageWrapper">
<img id="etchPic" src="images/pngkey.com-etch-a-sketch-png-5883884.png">
</div>
</body>
</html>