-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.html
49 lines (47 loc) · 1.34 KB
/
default.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>ABV Calculator</title>
<!-- WinJS references -->
<link href="//Microsoft.WinJS.1.0/css/ui-dark.css" rel="stylesheet" />
<script src="//Microsoft.WinJS.1.0/js/base.js"></script>
<script src="//Microsoft.WinJS.1.0/js/ui.js"></script>
<!-- ABVCalculator references -->
<link href="/css/default.css" rel="stylesheet" />
<script src="/Scripts/jquery-2.0.2.min.js"></script>
<script src="/js/default.js"></script>
</head>
<body>
<div class="main">
<table>
<tbody>
<tr>
<td>Original Gravity (OG): </td>
<td><input id="original" type="text" placeholder="1.052" /></td>
</tr>
<tr>
<td>OG Temperature: </td>
<td><select id="ogTemperature"></select> (F)</td>
</tr>
<tr>
<td>Final Gravity (FG): </td>
<td><input id="final" type="text" placeholder="1.014" /></td>
</tr>
<tr>
<td>FG Temperature: </td>
<td><select id="fgTemperature"></select> (F)</td>
</tr>
<tr>
<td>Calibration: </td>
<td><select id="calibration"></select> (F)</td>
</tr>
<tr class="result">
<td><button id="calc">Calculate ABV %</button></td>
<td><input id="result" type="text" readonly="readonly"></td>
</tr>
</tbody>
</table>
</div>
</body>
</html>