-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
33 lines (33 loc) · 836 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
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Stelstørrelse</title>
<script type="text/javascript" src="BikeSize.js"></script>
</head>
<body onload="loadForm();">
<form>
<table>
<tr>
<th>Type of frame</th>
<th>Frame size</th>
</tr>
<tr>
<td colspan="2"><div id="frameSizeDiv" onchange="updateFrameSize();">Choose framesize:</div></td>
</tr>
<tr>
<td>City bike</td>
<td id="cityFrameSize">Choose framesize</td>
</tr>
<tr>
<td>Mountainbike</td>
<td id="mtbFrameSize">Choose framesize</td>
</tr>
<tr>
<td>Racing bike</td>
<td id="raceFrameSize">Choose framesize</td>
</tr>
</table>
</form>
</body>
</html>