home *** CD-ROM | disk | FTP | other *** search
/ PC User 1997 April / PCU_APR_97.ISO / offline / workshop / frames / source.txt < prev    next >
Encoding:
Text File  |  1997-03-04  |  1.4 KB  |  72 lines

  1. HTML Source Box #1
  2. Source for document top.htm
  3. <HTML>
  4. <TITLE>Frames - Example</TITLE>
  5. <FRAMESET Rows = 20%,80%>
  6.     <NOFRAMES>
  7.     This page uses Frames and is best viewed in Netscape 2.0 or later.<BR>
  8.     </NOFRAMES>
  9.     <FRAME SRC = logo.htm NORESIZE SCROLLING = No>
  10.     <FRAME SRC = bottom.htm NORESIZE SCROLLING = No>
  11. </FRAMESET>
  12. </HTML>
  13. Source for document bottom.htm
  14. <HTML>
  15. <FRAMESET COLS = 150,*>
  16.     <FRAME SRC = "pgindex.htm">
  17.     <FRAME SRC = "pgdata.htm" Name="data">
  18. </FRAMESET>
  19. </HTML>
  20. Source Box #2
  21. Source for logo.htm
  22. <HTML>
  23. <BODY>
  24. This file will contain the company logo.
  25. </BODY>
  26. </HTML>
  27. Source for pgindex.htm
  28. <HTML>
  29. <BODY>
  30. <H3>Index</H3>
  31. <A HREF="noframes.htm" TARGET = _top>No frames</A><br>
  32. <A HREF="pgsindex.htm">More...</A>
  33. </BODY>
  34. </HTML>
  35. Source for pgdata.htm
  36. <HTML>
  37. <BODY>
  38. <H3>General opening information page</H3>
  39. </BODY>
  40. </HTML>
  41. Source for noframes.htm
  42. <HTML>
  43. <BODY>
  44. <H3>No Frames</H3>
  45. This is a no frames version.<p>
  46. Enter links in here...<p>
  47. <A HREF = "top.htm">Click here</a> for a frames version
  48. </BODY>
  49. </HTML>
  50. Source for pgsindex.htm
  51. <HTML>
  52. <BODY>
  53. <H3>Sub Index</H3>
  54. <A HREF="pgdata2.htm" TARGET="data" >Page 2</A><br>
  55. <A HREF="pgdata3.htm" TARGET="data">Page 3</A><br>
  56. <A HREF="pgindex.htm">Back</A><br>
  57. </BODY>
  58. </HTML>
  59. Source for pgdata2.htm
  60. <HTML>
  61. <BODY>
  62. <H3>Page 2</H3>
  63. </BODY>
  64. </HTML>
  65. Source for pgdata3.htm
  66. <HTML>
  67. <BODY>
  68. <H3>Page 3</H3>
  69. </BODY>
  70. </HTML>
  71.  
  72.