-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (45 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
<meta name="viewport" content="width=device-width" />
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<title>Nether Portal Calculator</title>
<link href="css/feather.css" rel="stylesheet" />
<link href="css/styles.css" rel="stylesheet" />
</head>
<body data-theme="dark">
<div class="index-header">
<h1>Nether Portal Coordinate Calculator</h1>
</div>
<div class="index-center">
<div id="msg"></div>
<form id="form1">
<span class="coordInput">
<strong>
<p>Enter coordinates and dimension:</p>
</strong>
<input type="text" id="inputX" placeholder="x">
<input type="text" id="inputY" placeholder="y (optional)">
<input type="text" id="inputZ" placeholder="z">
</span>
<br /><br />
<span class="select">
<select id="dimension" class="select-input">
<option value="dimension" selected="selected" disabled="disabled">Dimension</option>
<option value="nether">Nether</option>
<option value="overworld">Overworld</option>
</select>
</span>
<br /><br />
<input class="primary-button" type="submit" value="Calculate">
</form>
<div id="finish">
<h3 id="display"></h2>
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>