home *** CD-ROM | disk | FTP | other *** search
/ PC Extra 07 & 08 / pca1507.iso / Software / Webstrijd / CoffeeHTML / CoffeeHTML95.exe / %MAINDIR% / Snippets / Build a simple frame.snp next >
Encoding:
Text File  |  2003-05-27  |  771 b   |  28 lines

  1. <!--Frames- A homepage in 2 horizontal sections where
  2.         the main page changes with a push of a button.
  3.  
  4. The key is the FRAMESET ROWS & FRAMESET COLS lines.
  5. manipulating these two will give you different sizes
  6. of sections by % of page.
  7.  
  8. The "buttons.html" should be the name of the page that
  9. directs what is going to appear in the biggest section.
  10. "main.html" is the page that you want to appear 
  11. first in that section until someone pushes a button
  12. that changes it.-->
  13.  
  14. <FRAMESET ROWS="*,30%,70%">
  15.  
  16. <FRAME SCROLLING="no" NAME="_blank" NORESIZE SRC="buttons.html">
  17.  
  18. <FRAMESET COLS="100%,*">
  19.  
  20. <FRAME SCROLLING="no" NAME="_blank" SRC="buttons.html">
  21.  
  22. </FRAMESET>
  23.  
  24. <FRAME SCROLLING="yes" NAME="2window" NORESIZE SRC="main.html">
  25.  
  26. </FRAMESET>
  27.  
  28.