HTML-Formularelemente

Texteingabefelder

<input type="text">
<textarea>

Checkbox

<input type="checkbox">

Radiobuttons

<input type="radio" name="gruppe">

Dropdown-Menü

<select><optgroup><option>

Mehrfachauswahlliste

<select multiple="multiple"><optgroup><option>

Slider

<input type="range" min="0" max ="10" step="2">

Passworteingabefeld

<input type="password">

Eingabefelder mit speziellen Tastaturen

<input type="tel">
<input type="url">
<input type="email">

Datum und Uhrzeit

<input type="date">
<input type="month">
<input type="week">
<input type="time">
<input type="datetime-local">

Farbauswahl

<input type="color">

Dateipfadauswahl

<input type="file">

Buttons ohne Aktion

<button type="button">Beschriftung</button>
<input type="button" value="Beschriftung">

Submit-Button

<input type="submit" value="Beschriftung">