Exercise: Use the noframes element on the tutorial website
There are browsers that do not understand frames and therefore are unable to layout the page as intended by the designer.
The noframes element provides an alternative way to access the site content when frames are not supported.
Exercise
Add the noframes element to the tutorial site, as shown in the example below,
<html>
<head>
<title>Main page</title>
</head>
<frameset cols="20%, 80%">
<frame src="navigation.html" title="Site navigation" name="left_frame">
<frame src="framecontent.html" title="Content" name="right_frame">
<noframes>
<p><a href="../index.html" title="No frames version.">Visit the frames free version of this Website</a></p>
<p>Alternatively you can jump straight to the section you are interested in:</p>
<ul>
<li><a href="../aboutjoe.php">About Joe</a></li>
<li><a href="../gallery.php">Gallery</a></li>
<li><a href="../resources.php">Resources</a></li>
<li><a href="../contact.php">Contact</a></li>
</ul>
</noframes>
</frameset>
<html>
