-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (35 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Marathon Pace</title>
<link rel="stylesheet" href="css/concrete.2.1.1.min.css">
<link rel="stylesheet" href="css/index.css">
<meta name="description" content="Outputs the pace and splits required to run a given marathon time.">
</head>
<body>
<main class="container">
<h1>Marathon Pace</h1>
<form id="pace-form">
<label for="time">Time</label>
<input type="text" name="time" id="time">
<div id="unit-container">
<fieldset id="unit-fieldset">
<legend>Unit</legend>
<input type="radio" name="unit" id="km" value="km">
<label for="km">km</label>
<input type="radio" name="unit" id="mi" value="mi">
<label for="mi">mi</label>
</fieldset>
<span id="overall-pace"></span>
</div>
</form>
<table>
<tbody id="results">
</tbody>
</table>
</main>
<script src="js/index.js" type="module"></script>
</body>
</html>