HTML-Formularelemente
Texteingabefelder
<input type="text">
Einzeiliger Text
<textarea>
Mehrzeiliger Text
Checkbox
<input type="checkbox">
Aussage
Radiobuttons
<input type="radio" name="gruppe">
Option 1
Option 2
Dropdown-Menü
<select><optgroup><option>
Auswahl
Option 1
Option 2
Option 3
Option 4
Mehrfachauswahlliste
<select multiple="multiple"><optgroup><option>
Mehrfachauswahl
Option 1
Option 2
Option 3
Option 4
Slider
<input type="range" min="0" max ="10" step="2">
Slider
Passworteingabefeld
<input type="password">
Passwort
Eingabefelder mit speziellen Tastaturen
<input type="tel">
Telefonnummer
<input type="url">
Url
<input type="email">
E-Mail
Datum und Uhrzeit
<input type="date">
Datum
<input type="month">
Monat
<input type="week">
Woche
<input type="time">
Uhrzeit
<input type="datetime-local">
Datum und Uhrzeit
Farbauswahl
<input type="color">
Farbe
Dateipfadauswahl
<input type="file">
Dateipfad
Buttons ohne Aktion
<button type="button">Beschriftung</button>
Beschriftung
<input type="button" value="Beschriftung">
Submit-Button
<input type="submit" value="Beschriftung">