<class home>  <html part II>   <back

html continued

Alternates to Frames:

You can add in alternate content if a user cannot view frames.
This is always a good idea because some people have frames turned off in their browsers.
Use the <NOFRAME> opening and closing </NOFRAME> tag around the content you want as an alternate. Put this just before the closing </FRAMESET> tag.


example>>>

FRAMES page:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>

<head>
<title>Pony Pony Pony</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<FRAMESET COLS="50,*">
<FRAME name="left" SRC="links2.html" SCROLLING=yes NORESIZE>

<FRAME name="right" SRC="framey.html" SCROLLING=no NORESIZE>

<NOFRAME>
The information here is not viewable in frames. You may have a browser unable to view frames or you have frames turned off in the preferences for your browser.
<p>
You would see my pony page if you could see frames.
<a href="mailto:larissabank@hotmail.com"><strong>contact me</a></strong> for more info.

</NOFRAME>
</FRAMESET>
</html>