-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 2.3 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
<!DOCTYPE html>
<html>
<head>
<title>Drawinator 2000</title>
<link href="./style.css" type="text/css" rel="stylesheet">
<link rel="apple-touch-icon" sizes="180x180" href="./images/favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon_io/favicon-16x16.png">
<link rel="manifest" href="./images/favicon_io/site.webmanifest">
<meta name="description" content="DRAWINATOR 2000!! Technology has advanced big time!! Draw now online with the hover of your mouse!! Limited Technology! Created by Patrick Rodrigues">
<meta name="author" content="Patrick Rodrigues">
<meta name="og:image" content="https://rodpa715.github.io/etch-a-sketch/images/preview.png">
<meta name="og:description" content="DRAWINATOR 2000!! Technology has advanced big time!! Draw now online with the hover of your mouse!! Limited Technology! Created by Patrick Rodrigues">
</head>
<body>
<center>
<h1>Drawinator 2000</h1>
<div class="container">
<div class="grid"></div>
</div>
<div>
<form>
<h2>Choose your Canvas Size <span id="sizeDisplay">16x16</span></h2>
<span class="rangeTxt">1x1</span><input type="range" id="userInput" value="16" min="2" max="128">
<span class="rangeTxt">128x128</span>
<button type="button" id="clear">Clear Canvas</button>
<ul>
<li class="black"></li>
<li class="white"></li>
<li class="red"></li>
<li class="green"></li>
<li class="blue"></li>
<li class="rainbow"></li>
<li class="erase"></li>
<li class="greyscale"><p id="tooltip">This will automatically reset the canvas</p></li>
</ul>
</form>
<a class="link" href="https://github.com/rodpa715/etch-a-sketch">Created by Patrick Rodrigues</a>
</div>
</center>
<script src="./script.js"></script>
</body>
</html>