blob: 29204cd93fe80378f890b7da0119e8ba73c8b6da (
plain)
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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Pizza-Service</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
</head>
<!-- <body> -->
<!--<frameset cols="2>
<frame src="k-bestellung.html" name="k-bestellung">
<frame src="k-lieferzustand.html" name="k-lieferzustand">
<frame src="b-bestellzustand.html" name="b-bestellzustand">
<frame src="f-fahrer.html" name="f-fahrer">
</frameset>-->
<!-- </body> -->
<frameset cols="70%,30%">
<frameset rows="70%,30%">
<!-- Zwei Frames, deren Inhalt hier bestimmt wird. -->
<frame src="k-bestellung.html" name="k-bestellung">
<frame src="k-lieferzustand.html" name="k-lieferzustand">
</frameset>
<frameset rows="50%,50%">
<!-- Noch mal zwei Frames, deren Inhalt hier bestimmt wird. -->
<frame src="b-bestellzustand.html" name="b-bestellzustand">
<frame src="f-fahrer.html" name="f-fahrer">
</frameset>
</frameset>
</html>
|