-
Notifications
You must be signed in to change notification settings - Fork 1
/
Routenplaner.html
54 lines (50 loc) · 1.64 KB
/
Routenplaner.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
53
54
<!DOCTYPE html>
<html>
<head>
<script src="Routenplaner.js"></script>
<link rel="stylesheet" href="Routenplaner.css">
<meta charset="UTF-8">
<title>ÖGÖ - Routenplaner</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<h1>Routenplaner</h1>
<form action="/action_page.php">
<fieldset>
<legend><strong>Route</strong></legend>
Start<br>
<input type="text" name="start">
<br>
Ziel<br>
<input type="text" name="ziel">
<br>
</fieldset>
<br>
<fieldset>
<legend><strong>Zeiten</strong></legend>
<form>
<input type="checkbox" name="Abfahrt" value="Abfahrt"> Abfahrt
<input type="checkbox" name="Ankunft" value="Anunft"> Ankunft
</form>
<br> <br>
<i class="fa fa-clock-o" style="font-size:22px"></i>
<input type="time" name="uhrzeit">
<br> <br>
<i class="fa fa-calendar" style="font-size:20px"></i>
<input type="date" name="datum">
<br>
</fieldset>
<br>
<fieldset>
<form>
<input type="checkbox" name="Fußweg" value="Fußweg"> Fußweg <br>
<span id="Carsharing"><input type="checkbox" name="Carsharing" value="Carsharing"> Carsharing</span>
</form>
</fieldset>
<br>
<a href="index.html"><input type="button" class="bestaetigen" value="Bestätigen"></a>
<a href="index.html"><input type="button" class="zurueck" value="Zurück"></a>
</form>
</body>
</html>