forked from uncia-dev/Skyhawk-Flight-Instruments
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·67 lines (63 loc) · 2.84 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
57
58
59
60
61
62
63
64
65
66
67
<!--
Altimeter Practice (https://github.com/kj7rrv/altimeter-practice)
By Samuel Sloniker ([email protected])
Based on Skyhawk Flight Instruments (https://github.com/uw-ray/Skyhawk-Flight-Instruments)
By Raymond Blaga ([email protected]), Edward Hanna ([email protected]), Pavlo Kuzhel ([email protected])
Forked from jQuery Flight Indicators (https://github.com/sebmatton/jQuery-Flight-Indicators)
By Sébastien Matton ([email protected])
Published under GPLv3 License.
-->
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Altimeter Practice</title>
<link rel="stylesheet" type="text/css" href="css/flightindicators.css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<h1>ALTIMETER PRACTICE</h1>
<p><a href="https://github.com/kj7rrv/altimeter-practice">OPEN SOURCE - GPLv3</a></p>
<div id="main">
<p><a href="" id="settings-link">SETTINGS</a></p>
<div class="examples text-center">
<div>
<span id="altimeter"></span>
</div>
</div>
<form id="input_box">
<input type="text" inputmode="numeric" autocomplete="off" id="input"><button id="button">OK</button>
</form>
</div>
<div id="settings">
<p><a id="main-link" href="">GO BACK</a></p>
<form>
<table>
<tbody>
<tr>
<td class="label"><label for=minimum>Minimum altitude</label></td>
<td class="input"><input type="number" id="minimum"></td>
</tr>
<tr>
<td class="label"><label for=maximum>Maximum altitude</label></td>
<td class="input"><input type="number" id="maximum"></td>
</tr>
<tr>
<td class="label"><label for=increment>Altitude increment</label></td>
<td class="input"><input type="number" id="increment"></td>
</tr>
<tr>
<td class="label"><label for=margin>Margin for error</label></td>
<td class="input"><input type="number" id="margin"></td>
</tr>
<tr>
<td class="label"><label for="show-answers">Show answers</label></td>
<td class="input"><input type="checkbox" id="show-answers"></td>
</tr>
</tbody>
</table>
</form>
</div>
<script src="js/ui.js"></script>
</body>
</html>