-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (44 loc) · 2.07 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
57
58
59
60
61
62
63
<!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>Muaaz 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="Muaaz Bdear, syknapse, بدير, معاذ, art, draw, pixel, fun, frontend, front-end, front end, developer, web developer, web development, javascript">
<meta name="author" content="Muaaz Bdear">
<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>
<script src="designs.js"></script>
<div class="subfooter">
<div class="col-md-12">
<p class="text-center">Copyright 2020 Muaaz Bdear, All Rights Reserved</p>
</div>
</div>
</body>
</html>