Hallo,
das sollen 3 Dateien sein, also eine pro Doctype, aber immer mit allen iframe, ich hab das nur mal zusammengeklebt. Anstatt der src in den iframes muesstest Du halt was sinnvolles reinsetzten.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
oder
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
oder
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<iframe src="foo.htm"></iframe>
<iframe src="bar.htm"></iframe>
<iframe src="bild.gif"></iframe>
<iframe src="about:blank"></iframe>
</body>
</html>
Dieter