-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 1.09 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
<html>
<head>
<meta charset="utf-8"></meta>
<title>Minecraft Coord Calculator</title>
<link rel="stylesheet" href="https://sysnote8main.github.io/web-fontcss/styles/mycss1001.css">
<script src="script.js"></script>
</head>
<body>
<h1 class="title-main">Minecraft Coordinate Calculator</h1>
Now World is nether? <input id="btn_toggle" class="btn_input" type="checkbox"></input>
<label for="btn_toggle" class="btn_label"></label>
<p>
Coord:
<input type="number" id="coord_inx" placeholder="Pos X"></input>
<input type="number" id="coord_iny" placeholder="Pos Y"></input>
<input type="number" id="coord_inz" placeholder="Pos Z"></input>
</p>
<p>Output World: <span id="output_world">None</span></p>
<p>
XYZ:
<input type="number" id="coord_outx" placeholder="Output Pos X" readonly></input>
<input type="number" id="coord_outy" placeholder="Output Pos Y" readonly></input>
<input type="number" id="coord_outz" placeholder="Output Pos Z" readonly></input>
</p>
</body>
</html>