-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (31 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<title>YC Postal Code Converter</title>
<meta charset="UTF-8">
<meta name="description" content="Postal Code Converter for YJJ City's Postal System. Converts from Base 10 to Base 36.">
<meta name="keywords" content="YJJ City, Limaru, YJJ City Postal Code">
<meta name="author" content="YJJcoolcool">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
<script src="script.js"></script>
</head>
<body>
<h1>YJJ City Postal Code Converter</h1>
<div>
<h2>Minecraft Coordinates</h2>
<label for="x">X:</label>
<input type="number" id="x" onkeyup="convertxz()" autofocus>
<label for="z">Z:</label>
<input type="number" id="z" onkeyup="convertxz()">
</div>
<div>
<h2>Base-36 Postal Code</h2>
<label for="code">Postal Code:</label>
<input type="text" id="code" onkeyup="convert36()">
</div>
<div id="error"></div>
</body>
</html>