hier die dazugehörigen html Dateien
nummer 1:
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
<html>
<head>
<link href="../library/style1.css" rel="stylesheet" type="text/css">
</head>
<body>
<p class="seitentitel">Mein Gästebuch</p>
<p> </p>
<p class="absatztitel">Bitte eintragen, ich freue mich
über Lob und Kritik.</p>
<p> </p>
<form action="../cgi-bin/gaestebuch.pl" method="post">
<table>
<tr>
<td>Name</td>
<td><input type=text name="name" size=30></td>
</tr>
<tr>
<td>E-Mail</td>
<td><input type=text name="email" size=30></td>
</tr>
<tr>
<td>Ort</td>
<td><input type=text name="ort" size=30></td>
</tr>
<tr>
<td>Land</td>
<td><input type=text name="land" size=30></td>
</tr>
</table>
<p>Kommentar:</p>
<textarea class="normtitel" name="kommentar" rows=5 cols=45></textarea>
<p><input type=submit value="eintragen">
</form></p><hr><br>
</body>
</html>
nummer 2:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html>
<head>
<link href="../library/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<p class="seitentitel">Das Gästebuch</p>
<p> </p>
<form action="index.html">
<p>
<input type="button" name="Verweis" value="Ins Gästebuch eintragen"
onClick="self.location.href='gaestebuch.html'">
</p>
</form>
<p>
<!--beginn-->
</p>
</body>
</html>
\n\n
<!--EDIT|renee|1085563267-->