-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (42 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Williams Soaring Price Calculator</title>
<script src="calculator.min.a.js"></script>
<link rel="stylesheet" href="style1.css"/>
</head>
<body>
<div id="inputForm">
<span class="titleOfInput">The Glider</span>
<br/>
<select id="airplaneSel">
<option value="ASK-21">ASK-21</option>
<option value="DUO-X">DUO Discus X</option>
<option value="ASK-23">ASK-23</option>
<option value="ASW-24">ASW-24</option>
<option value="Yours">Your Glider</option>
</select>
<br/>
<span class="titleOfInput">Instruction?</span>
<br/>
<select id="instSel">
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
<br/>
Tow Height<input type="text" name="towHeight" id="towHeight" size="5"/>
<br/>
Estimated Time Aloft (minutes)<input type="text" name="eta" id="eta" size="3" />
<br/>
<button name="calculate" id="calculButton" type="button">Calculate</button><br/>
<span>
Cost per hour:<input type="text" id="resultHour" size="6" readonly="true" /><br/>
Cost per minute:<input type="text" id="resultMin" size="6" readonly="true" />
</span><br/>
<span>
Remove the .min.a to see the full version of files.<br/>
Change the .min.a to .min.s for a simple compiled version. (Useful for hooking into the code)
</span>
</div>
</body>
</html>