1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
|
<form action="action_formular.php" method="post">
<table
style="color: rgb(45, 35, 30); width: 200px; text-align: left; margin-left: auto; margin-right: auto;"
border="0" cellpadding="0" cellspacing="2">
<tbody>
<tr>
<th style="background-color: rgb(91, 69, 55);"><small><small>Name</small></small></th>
<td
style="background-color: rgb(167, 148, 111); text-align: center;"><input
name="name" type="text"></td>
</tr>
<tr>
<th style="background-color: rgb(91, 69, 55);"><small><small>E-Mail</small></small></th>
<td
style="background-color: rgb(167, 148, 111); text-align: center;"><input
name="email" type="text"></td>
</tr>
<tr>
<th style="background-color: rgb(91, 69, 55);"><small><small>Betreff</small></small></th>
<td
style="background-color: rgb(167, 148, 111); text-align: center;"><input
name="betreff" type="text"></td>
</tr>
<tr>
<th style="background-color: rgb(91, 69, 55);"><small><small>Nachricht</small></small></th>
<td
style="background-color: rgb(167, 148, 111); text-align: center;"><center><textarea
name="nachricht"></textarea></center></td>
</tr>
<tr>
<th><input value="Abschicken" type="submit"></th>
<th><input value="Zurücksetzen" type="reset"></th>
</tr>
</tbody>
</table>
</form>
|