-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (44 loc) · 1.7 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
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Ensures proper rendering and touch zooming -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Pixel RGB exporter</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" href="#">
</head>
<body>
<div class="row">
<div class="column">
<div class="inputs">
<h4>choose grid size</h4>
<form class="size-picker">
height:
<input type="number" class="input-height" name="height" min="1" max="50" value="25">
<br><br>
width:
<input type="number" class="input-width" name="width" min="1" max="50" value="25">
<input type="submit" class="submit-button" value="Clear and Resize">
</form>
<h4>select color</h4>
<input type="color" class="color-picker" value="#000000">
<input type="button" class="quick-fill" value="fill">
<h4 id="text4slider">mode</h4>
<label class="switch">
<input type="checkbox" id="Chckbox" onclick="switchfnc()">
<span class="slider round"></span>
</label>
</div>
</div>
<div class="column">
<h1>Pixel art RGB exporter</h1>
<table class="pixel-canvas"></table>
<br>
<input type="button" class="txt-gen" value="Generate CSV File">
</div>
</div>
<script src="index.js"></script>
</body>
</html>