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:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
|
<html>
<head>
<title>Kontakt</title>
</head>
<body style="width: 625px;">
<div align="center">
<form action="action_formular.php" method="post">
<big><span style="color: rgb(64, 86, 39);">Kontakt</span></big><br style="color: rgb(64, 86, 39);">
<br style="color: rgb(64, 86, 39);">
<span style="color: rgb(64, 86, 39);">Hier könnt ihr uns kontaktieren. Wir freuen uns immer über Lob, Kritik und anderes =)</span><br>
<table>
<tbody>
<tr>
<th style="color: rgb(64, 86, 39);">Name:</th>
<td><input name="name" type="text"></td>
</tr>
<tr>
<th style="color: rgb(64, 86, 39);">e-Mail:</th>
<td><input name="email" type="text"></td>
</tr>
<tr>
<th style="color: rgb(64, 86, 39);">Betreff:</th>
<td><input name="betreff" type="text"></td>
</tr>
<tr>
<th style="color: rgb(64, 86, 39);">Homepage:</th>
<td><input name="homepage" type="text"></td>
</tr>
<tr>
<th style="color: rgb(64, 86, 39);">Nachricht:</th>
<td><textarea name="nachricht"></textarea></td>
</tr>
<tr>
<th><input value="Absenden" type="submit"></th>
<th><input value="Zurücksetzen" type="reset"></th>
</tr>
</tbody>
</table>
</form>
</div>
</body>
</html> |