Skip to content

Instantly share code, notes, and snippets.

@radarin
Last active October 19, 2017 06:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radarin/fe8dfb0a7c05146b85da30cf0a110476 to your computer and use it in GitHub Desktop.
Save radarin/fe8dfb0a7c05146b85da30cf0a110476 to your computer and use it in GitHub Desktop.
Formularfelder
<!-- Textfeld -->
<INPUT type="text" name="vorname" size="40" maxlength="150" value="">
<!-- Passwort -->
<INPUT type="password" name="passwort" size="40" maxlength="150" value="">
<!-- Textbereich -->
<textarea name="bemerkungen" rows="5" cols="40">Vorgegebener Text</textarea>
<!-- Checkbox -->
<input type="checkbox" name="sport"> Sport
<input type="checkbox" name="essen"> Essen
<input type="checkbox" name="auto"> Auto
<!-- Radiobutton -->
<input type="radio" name="auto" value="opel"> Opel
<input type="radio" name="auto" value="audi"> Audi
<input type="radio" name="auto" value="seat"> Seat
<!-- Rollmenu -->
<select name="preis">
<option value="10.000">10.000
<option selected value="20.000">20.000
<option value="30.000">30.000
<option value="40.000">40.000
<option value="50.000">50.000
</select>
<!-- Submit-Button -->
<input type="submit" value="Losschicken">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment