-
Notifications
You must be signed in to change notification settings - Fork 0
/
abvcalc.html
27 lines (24 loc) · 906 Bytes
/
abvcalc.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
<!DOCTYPE html>
<html>
<head>
<title>ABV/Attenuation Calculator for Beer</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
</head>
<body>
<h1>ABV/Attenuation Calculator for Beer</h1>
<p>Use this calculator to find out the ABV and attenuation of your beer when you know the original and present gravities.</p>
<form>
<label>Original Gravity: </label><input type="number" id="orgGrav" placeholder="e.g. '42'"><br>
<label>Present Gravity: </label><input type="number" id="presentGrav" placeholder="e.g. '10'"><br>
</form>
<div class="navButtons">
<button>Submit</button>
<a href="index.html"><button>Back</button></a>
</div>
<p id="results"></p>
<script src="abvcalc.js"></script>
</body>
</html>