Want everyone to see your page?
Use the noframe tag.
If you use frames in your site, it's guaranteed that some people, using older browsers,
won't be able to see your page. Fix this with a non framed version of your home page or a, sorry this browser doesn't support frames, message
with a link to an alternative, non-framed home page.
This all goes between a pair of
noframes and body tags inside your main pair of frameset tags.
<noframes><body></body></noframes> tags.
Sorry, no can see, message.
<HTML>
<HEAD>
<TITLE>Experiment Frame Page</TITLE>
</HEAD>
<FRAMESET ROWS="100,*">
<FRAME SRC="title.html">
<FRAMESET COLS="150,*">
<FRAME SRC="links.html">
<FRAME SRC="top.html" NAME="top-page">
</FRAMESET>
<NOFRAMES>
<BODY>
G'day. So you want to see Kimberly's html
lessons. Unfortunately, that site has frames
which your computer wont let you see.
Sorry about that!
</BODY>
</NOFRAMES>
</FRAMESET>
</HTML>
|
Sorry, no can see, message with a link.
<NOFRAMES>
<BODY>
G'day. So you want to see Kimberly's html
lessons. Unfortunately, that site has frames
which your computer wont let you see.
Click here, for non-framed version
of this page.
</BODY>
</NOFRAMES>
|
I could make the link go to top.html but can you guess the problem? Yep!
There's no list of links on this page. Have a look!
I would have to combine the 3 frames top.html, links.html and title.htm,
into one page.
Next, I would save it as top2.html in the same folder that has all my lessons.
The link code would read :
<a href="top2.html">Blah! blah!</a>