HTML Old School

Nesting frames

Sometimes we will want to nest one frame into another.

<frameset rows="33%,33%,*">
   <frame src="./doc_a.html">
     <frameset cols="50%,50%">
       <frame src="./doc_b.html">
       <frame src="./doc_c.html">
     </frameset>
   <frame src="./doc_d.html">
</frameset>

 

page A
pageB pageC
pageD
       

 

 

Nested frameset example: direktno.htm

 

If you want to display a content in another frame use:

  • _parent
  • _top
  • _self
  • id
  • name

in target attribute of a link: <a href="" target="_top">some link</a>