-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlive_order.html
More file actions
30 lines (26 loc) · 922 Bytes
/
live_order.html
File metadata and controls
30 lines (26 loc) · 922 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>repl.it</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<label>Vorname</label>
<input type="text" name="vorname" id="vorname">
<label>Auswahl Gericht</label>
<select id="gericht">
<option>Gericht wählen</option>
<option value="Frühstück">Frühstück</option>
<option value="Mittag">Mittag</option>
<option value="Abendessen">Abendessen</option>
</select>
<label>Getränk</label>
<input type="checkbox" name="drink" value="Orangensaft"> Orangensaft<br>
<input type="checkbox" name="drink" value="Wasser"> Wasser<br>
<input type="checkbox" name="drink" value="Cola"> Cola
<input type="button" id="auswertung" value="Ab geht's!">
<script src="script.js"></script>
</body>
</html>