-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (49 loc) · 1.69 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
<!DOCTYPE html>
<html>
<head>
<title>Ergoscore Calculator</title>
<meta name="description" content="Ergoscore Calculator">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>
Ergoscore Calculator
</h1>
<p class="centered">Reken je score van 20 minuten ergometeren om voor je leeftijd, gewicht en geslacht</p>
</header>
<main>
<form id="ergoCalculator">
<label>Afstand (in meters)</label>
<input name="distance" placeholder="4832" type="number">
<label>Leeftijd</label>
<input name="age" placeholder="35" type="number">
<label>Gewicht</label>
<input name="weight" placeholder="82.4" type="number" step="0.1">
<div class="radio-buttons">
<label><input type="radio" name="gender" value="m" checked> Man</label>
<label><input type="radio" name="gender" value="f"> Vrouw</label>
</div>
<button type="submit">Bereken score</button>
</form>
<section class="result">
<p>Jouw score: <span class="score" id="score"><span class="ghost">0000</span></span></p>
</section>
<p class="centered">
<a href="https://hoopergocompetitie.wordpress.com/ranglijst-scores1718/">
Bekijk de ranglijst
</a>
</p>
</main>
<footer>
Gemaakt door <a href="https://vincentoord.nl">Vincent Oord</a>
</footer>
<script src="js/ergo-score-calculator.js"></script>
<script>
ergoScoreCalculator.init();
</script>
</body>
</html>