Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> input{ padding:5px; margin-bottom:5px; } form, label { margin: 10px; } </style> </head> <body> <form> <input type="text" placeholder="Ein Platzhalter" /> <input type="text" placeholder="Ein Platzhalter" /> <input type="text" placeholder="Ein Platzhalter" /> <input type="text" placeholder="Ein Platzhalter" /> <input type="text" placeholder="Ein Platzhalter" /> <input type="text" placeholder="Ein Platzhalter" /> </form> <form> Vorname:<br> <input type="text" name="fname"><br> Nachname:<br> <input type="text" name="lname"> </form> <form> <input type="radio" name="gender" value="male" checked>Männlich<br> <input type="radio" name="gender" value="female">Weiblich<br> <input type="radio" name="gender" value="other">Sonstig </form> <form> <label for="field">Ein Formularfeld</label> <input id="field" type="text" name="name"> </form> <form> <label for="field1">Anderer Formularfeld</label> <input id="field1" type="text" name="name"> </form> <form> <fieldset> <legend>Frage</legend> <input type="radio" name="radio" id="radio"> <label for="radio">Variante 1</label> <input type="radio" name="radio1" id="radio1"> <label for="radio1">Variante 2</label> </fieldset> </form> </div> </body> </html>