-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (33 loc) · 1.29 KB
/
index.html
File metadata and controls
36 lines (33 loc) · 1.29 KB
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
<!DOCTYPE html>
<html lang="eng">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mindustry Text Generator</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Generate your own Mindustry-like text!</h1>
<div class="output-container">
<canvas id="outputCanvas"></canvas>
</div>
<div class="input-area">
<textarea id="textInput" placeholder="Enter your text..." rows="4"></textarea>
<label for="alignSelect">Align:</label>
<select id="alignSelect">
<option value="left">Left</option>
<option value="center">Center</option>
<option value="right">Right</option>
</select>
<button id="generateBtn">Generate</button>
<button id="tintBtn">Tint</button>
<button id="downloadBtn" disabled>Download</button>
</div>
<div id="colorDiv">
<label><input type=color id="colorInput" class="colorInput" value="#ffffff">Letters</label>
<label><input type=color id="colorInputNum" class="colorInput" value="#84f490">Numbers</label>
<label><input type=color id="colorInputSym" class="colorInput" value="#ffd380">Symbols</label>
</div>
<script src="script.js"></script>
</body>
</html>