Clipboard.

<!DOCTYPE html>
<html lang=“de“>

<head>
<meta charset=“UTF-8″>
<title>Formular Input Tester</title>
</head>

<body>


<form action=“action.php“ method=“get“>
<p>
Vorname:<br>
<input name=“vorname“ type=“text“ size=“30″ maxlength=“30″>
</p>
<p>
Das ist ein normaler Text<br>
<label for=“nachname“>Das ist ein Label:</label>
<input name=“nachname“ type=“text“ size=“30″ maxlength=“40″>
</p>

<p>Textarea:</p>
<textarea cols=“20″ rows=“5″>
Dies ist eine Textvorbelegung für ein
mehrzeiliges Eingabefeld…
</textarea>

</form>
</body>

</html>

Downloads.