-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
56 lines (46 loc) · 2.57 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
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Syk's Pixel Art Maker</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<meta name="description" content="A fun intuitive pixel art maker. Draw something!">
<meta name="keywords" content="Syk Houdeib, syknapse, syk, houdeib, art, draw, pixel, fun, frontend, front-end, front end, developer, web developer, web development, javascript">
<meta name="author" content="Syk Houdeib">
<link href="https://fonts.googleapis.com/css?family=Joti+One|Open+Sans" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body>
<h1>Pixel Art Maker</h1>
<div class="controls">
<button type="button" id="reset">Reset</button>
<label class="builder"><div>Row</div>
<button type="button" id="remove-row" value="10">-</button>
<button type="button" id="add-row" value="10">+</button>
<input type="number" id="input-rows" name="height" min="1" max="150" value="10">
</label>
<label class="builder"><div>Column</div>
<button type="button" id="remove-column" value="10">-</button>
<button type="button" id="add-column" value="10">+</button>
<input type="number" id="input-columns" name="width" min="1" max="150" value="10">
</label>
<div class="builder">
<button type="button" id="clear-grid">Clear Grid</button>
<button type="button" id="create-grid">Create Grid</button>
</div>
<input type="color" id="color-picker">
</div>
<table id="pixel-canvas"></table>
<footer>
<p>Take a screenshot of your masterpiece, click Tweet, paste it, and tweet it right back at me!</p>
<a href="https://twitter.com/share?ref_src=twsrc%5Etfw" class="twitter-share-button" data-text="I made this masterpiece with this Pixel Art maker" data-via="Syknapse" data-hashtags="100DaysofCode" data-show-count="false" title="tweeet">Tweet</a><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script><br>
<a href="https://syknapse.github.io/Syk-Houdeib" title="Portfolio & Contact">Syk Houdeib 2018</a>
<span> || </span>
<a href="https://github.com/Syknapse/Pixel-art-maker" title="View project on GitHub">GitHub</a>
</footer>
<script src="designs.js"></script>
</body>
</html>