Source Code: (back to article)
<!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>