<html>
   <head>Frames Demo</head>
   <frameset cols="30%,70%">
      <frame  src="/ol.html" name="ol">
      <frameset cols="50%,50%">
         <frame  src="/ul.html" name="ul">
         <frame  src="/dl.html" name="dl">
      </frameset>
   </frameset>
</html>

 

Above code has 3 files, such as ol.html, ul.html and dl.html. Keep all the three files and the above mentioned html code in the same folder. If you open the final saved html file. It could open all the three lists in a single page side by side using frames.

frames html programming9