forked from WEB-IB-SS26/development-ib
50 lines
1.2 KiB
HTML
50 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Obstkorb Bestellung</title>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Bestellen Sie sich Ihr Obst direkt nach Hause!</h1>
|
|
|
|
<form action="" method="get">
|
|
|
|
<label>
|
|
Obst:<br>
|
|
<input list="Obstsorten" name="sorten" required><br>
|
|
|
|
<datalist id="Obstsorten">
|
|
<option value="Apfel">
|
|
<option value="Banane">
|
|
<option value="Birne">
|
|
<option value="Mango">
|
|
<option value="Litchi">
|
|
<option value="Physalis">
|
|
<option value="Ananas">
|
|
<option value="Heidelbeeren">
|
|
</datalist>
|
|
</label>
|
|
|
|
<label>
|
|
Stückzahl:<br>
|
|
<input type="number" name="number" min="1" max="10" required><br>
|
|
</label>
|
|
|
|
<label>
|
|
Boxfarbe:<br>
|
|
<input type="color" name="color" required><br>
|
|
</label>
|
|
<br>
|
|
|
|
<input type="submit" value="Bestellung abgeben">
|
|
</form>
|
|
</body>
|
|
</html>
|
|
|
|
<!--
|
|
6. a) Funktioniert
|
|
b) Funktioniert
|
|
c) Funktioniert
|
|
d) Funktioniert
|
|
--> |