NAME
attribute in the <FRAME> tags, giving unique names to each frame
TARGET
attribute in the <A> tag to specify the name of the target frame in which to load the link
_blank
-- will open a new, unnamed browser window
_self
-- the default for <A> tags; loads linked doc in same frame as link
_parent
-- will load into the parent frame (one step up in frame nest hierarchy)
_top
-- will load into the top-level of window "busting out" of the frameset
<HTML>
<HEAD>
<TITLE>Targeting Frames for Links Example</TITLE>
</HEAD>
<FRAMESET ROWS="25%,*,25%">
<FRAME SRC="framcont/nav.htm" NAME="nav">
<FRAME SRC="framcont/two.htm" NAME="main">
<FRAME SRC="framcont/three.htm" NAME="bottom">
</FRAMESET>
<NOFRAMES>Sorry, but your browser does not support frames.</NOFRAMES>
</HTML>
<HTML>
<HEAD>
<TITLE>Document for Navigation Frame</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<P><A HREF="desert.htm" TARGET="main">Desert</A> |
<A HREF="five.htm" TARGET="bottom">Five</A> |
<A HREF="six.htm" TARGET="main">Six</A> |
<A HREF="seven.htm" TARGET="bottom">Seven</A></P>
<P><A HREF="../target.htm" TARGET="_top">Back to Targeting Frames Page</A></P>
</BODY>
</HTML>
Course Home | Announcements | Class Roster | Schedule | Syllabus