Designer-Logo
Designer-Logo
Überschrift Beispiel Tag select
<!DOCTYPE html>
<html>
<body>
<h3>Das select-Element</h3>
<p>Das select-Element wird zum erstellen einer Drop-down Liste verwendet.</p>
<form action="action_page.php">
<label for="cars">Wähle ein Auto:</label>
<select name="cars" id="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="opel">Opel</option>
<option value="audi">Audi</option>
</select>
<br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>
Überschrift BrowserAusgabe

Das select-Element

Das select-Element wird zum erstellen einer Drop-down Liste verwendet.