Skip Navigation.

NWE Help: Web: Authoring: HTML: Frames: Code

NWE Home :: Help :: Web :: Authoring :: HTML :: Frames

Here is the code for the first frameset from our examples.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<HTML>
<HEAD>
 <TITLE>NWE Frame Example 1</TITLE>
</HEAD>

<FRAMESET rows="100,*" framespacing="0" frameborder="1" border="1">
  <frame src="menu.html" name="header">
  <frame src="page1.html" name="body">
</FRAMESET>

<BODY BGCOLOR="#FFFFFF">
<noframes>
This page uses frames.  It loads a menu-bar and a secondary page.

<P><A HREF="menu.html">The menu page.</A>
<BR><A HREF="page1.html">The main page.</A></P>

</noframes>
</BODY>
</HTML>