Frames: Difference between revisions

From Open Source Ecology
Jump to navigation Jump to search
(Created page with "<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <HTML> <HEAD> <TITLE>A simple frameset document</TITLE> </HEAD> <FRAME...")
 
No edit summary
Line 1: Line 1:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
//master page
  "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<HTML>
<head>
<HEAD>
<title>My example</title>
<TITLE>A simple frameset document</TITLE>
</head>
</HEAD>
<frameset cols="30%,50%">
<FRAMESET cols="20%, 80%">
<frame src="page1.htm">
  <FRAMESET rows="100, 200">
<frame src="page2.htm">
      <FRAME src="contents_of_frame1.html">
</frameset>
      <FRAME src="contents_of_frame2.gif">
</html>
  </FRAMESET>
  <FRAME src="contents_of_frame3.html">
  <NOFRAMES>
      <P>This frameset document contains:
      <UL>
        <LI><A href="contents_of_frame1.html">Some neat contents</A>
        <LI><IMG src="contents_of_frame2.gif" alt="A neat image">
        <LI><A href="contents_of_frame3.html">Some other neat contents</A>
      </UL>
  </NOFRAMES>
</FRAMESET>
</HTML>

Revision as of 23:24, 14 April 2013

//master page My example