-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (22 loc) · 858 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Quick weight conversion</title>
<script src="weight.js"></script>
<link rel="stylesheet" type="text/css" href="weight.css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
</head>
<body onload="kg.value = defaultKg(); result.value = wordykg2stlb( parseFloat( kg.value ) )">
<form oninput="result.value = wordykg2stlb( parseFloat( kg.value ) )">
<p>
<label for="kg">Kilograms</label><br /><input id="kg" type="number" step="any" min="0" name="kg" autofocus autocomplete="off"/>
</p>
<p>
<output id="result" name="result"></output>
</p>
</form>
</body>
</html>