-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 1.53 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>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap"
rel="stylesheet"
/>
<link rel="icon" href="./assets/iconmonstr-paintbrush-7.svg" />
<link rel="stylesheet" href="style.css" />
<title>Pixel Art Maker</title>
</head>
<body>
<header class="flex">
<h1 id="title">Pixel Art Maker</h1>
</header>
<section class="edit-sect flex">
<h2>Choose Grid Size:</h2>
<div class="edit">
<form id="grid-size">
<label for="grid-width">Width:</label>
<input
type="number"
name="grid-width"
value="1"
min="1"
id="inputWidth"
/>
<label for="grid-height" class="height-label">Height:</label>
<input
type="number"
name="grid-height"
value="1"
min="1"
id="inputHeight"
/>
<input type="submit" class="submit-btn" id="submit-btn" />
</form>
<div class="color-picker flex">
<label for="color-pick">Pick a Color:</label>
<input type="color" name="color-pick" id="colorPicker" />
</div>
</div>
</section>
<section class="desing-sect flex">
<h2>Design Canvas:</h2>
<table id="pixelCanvas"></table>
</section>
<script src="design.js"></script>
</body>
</html>