nach deiner äh jo skizze nach hat das aber mit iFrames nix zu tun.
Das wären "normale" Frames. Links das Menü und rechts die Hauptseite.
iFrame wäre dann in einen Frame wieder ein Frame drin.
Das was du willst geht so:
Zitat:
<frameset cols="30%,70%">
<frame src="links.html">
<frame src="rechts.html">
</frameset>
<noframes>
Ihr Browser unterstützt keine Frames!
</noframes>
|
InlineFrame geht so:
Zitat:
<iframe name="I1">
Ihr Browser unterstützt Inlineframes nicht oder zeigt sie in der derzeitigen Konfiguration nicht an.
</iframe>
|
Flash file einfügen
Zitat:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="300" height="250">
<param name="movie" value="datei.swf">
<param name="quality" value="high">
<embed src="datei.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="300" height="250"></embed></object>
|