<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
 "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
   <title>Formular - HTML - Workshop Internet-Pr&auml;senz</title>

   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

   <meta name="description"
      content="&Uuml;bung Formulare.">
   <meta name="keywords" content="HTML, Formular">
   <meta name="author" content="Roland Unger">
</head>

<body>

<form action="mailto:unger@soziologie.uni-halle.de" method="post" enctype="text/plain">

<strong>Bitte kreuzen Sie an:</strong>
<br>&nbsp;<br>

<input type="checkbox" name="checkbox" value="1">1&nbsp;|
<input type="checkbox" name="checkbox" value="2" checked>2&nbsp;|
<input type="checkbox" name="checkbox" value="3">3

<br>&nbsp;<br>
<strong>Bitte geben Sie Ihre Anschrift ein:</strong>
<br>&nbsp;<br>

<table summary="Tabellarische Form von Eingabezeilen" width="100%" cellspacing="0" cellpadding="5" border="0">
<tr>
   <td>Name:</td>
   <td><input name="Name" size="30" maxlength="60"></td>
</tr>
<tr>
   <td>Vorname:</td>
   <td><input name="Vorname" size="30" maxlength="60"></td>
</tr>
<tr>
   <td>Stra&szlig;e:</td>
   <td><input name="Strasse" size="30" maxlength="60"></td>
</tr>
<tr>
   <td>PLZ:</td>
   <td><input name="PLZ" size="30" maxlength="60"></td>
</tr>
<tr>
   <td>Ort:</td>
   <td><input name="Ort" size="30" maxlength="60" value="Halle"></td>
</tr>
</table>

<br>&nbsp;

<input type="submit" value="Abschicken">
<input type="reset" value="Eingaben l&ouml;schen">

</form>

</body>
</html>