
<html xmlns="http://www.w3.org/TR/xhtml1">
<head>
  <title> Simple Frame Test Document </title>
</head>
<frameset rows="90, *">            <!-- divides the browser into two 
                                        rows, top row is 90 pixels 
                                        high                        -->
   <frame src="direct.html" />     <!-- top frame content           -->
   <frameset cols="10%, 45%, 45%"> <!-- second frame has three 
                                        subframes  -->
      <!-- ... more frames and/or framesets  
               inside this frameset ...     -->
   </frameset>
   <noframes>
      <body>
      <!-- ... content for browsers that do not 
               support frame documents ...  -->
      </body>
  </noframes>
</frameset>
</html>
