-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- start Meta data-->
<meta charset="UTF-8">
<meta name="description" content="Pixel Art Maker">
<meta name="keywords" content="HTML, CSS, JavaScript, pixel art maker">
<meta name="author" content="Atef Lassoued">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- End Meta data-->
<link rel="stylesheet" href="style/style.css"></link>
<script src="script/Art.js"></script>
<title>Pixel Art Maker</title>
</head>
<body>
<h1>Simple Pixel Art Maker</h1>
<h3>Choose Grid Size</h3>
<form>
<label>Grid Height:</label>
<input type="number" id="HeightID"/>
<label>Grid Width:</label>
<input type="number" id="WidthID"/>
<input type="button" value="Submit Data" onclick="DrawGrid()"></input>
<input type="reset" value="reset"/>
</form>
<h4>Pick A Color</h4><input type="color" id="ColorID"/>
<h4>Design Canvas</h4>
<table id="GridID">
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
<div class="footer">Designed By Atef Lassoued</div>
</body>
</html>