-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
23 lines (23 loc) · 1014 Bytes
/
form.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<label>Wie viele Meilen sollen es sein?</label>
<input type="number" placeholder="" id="input"><br>
<label>Sind die Straßen gut?</label>
<input type="checkbox" id="streets"><br>
<label>wird ein Berg überquert?</label>
<input type="checkbox" id="mountains"><br>
<label>Ist der Reisende geübt?</label>
<input type="checkbox" id="practised"><br>
<label>Geht es quer feldein?</label>
<input type="checkbox" id="wilderness"><br>
<label>Viel Gepäck?</label>
<input type="checkbox" id="weight"><br>
<label>Womit ist der Reisende unterwegs?</label><br>
<select id="method">
<option value="pferd">Zu Pferd</option>
<option value="fuss">Zu Fuß</option>
<option value="konvoi">Im Konvoi</option>
<option value="flussauf">Fluss aufwärts</option>
<option value="flussab">Fluss abwärts</option>
</select>
<br><br>
<input type="submit" onclick="travelConverter()">
<label>Ergebnis</label> <span id="result" class="calculator_result" placeholder="0"></span> Tage<br>