I'm doing an assignment in Web Fundamental, I have to simply show I can do a page with split frames. Problem is they are still showing up as separate pages. I can't seem to figure out what's wrong Here's the codes:
this is one .html document
<html>
<head>
<title>Frameset page<title>
</head>
<frameset cols="25%, *">
<frame src="frame_example_left.html" />
<frame src="frame_example_right.html" />
</frameset>
</html>
this is the 2nd .html doc
<html>
<body style="background-color:green">
<p>This is the left frame (frame_example_left.html).</p>
</body>
</html>
This is the 3rd .html doc. They are all in the same folder on my desktop.
The right frame (frame_example_right.html):
<html>
<body style="background-color:yellow">
<p>This is the right frame (frame_example_right.html).</p>
</body>
</html>
PLease Help!
I tried what the first answe adxised....still didn't work!
this is one .html document
<html>
<head>
<title>Frameset page<title>
</head>
<frameset cols="25%, *">
<frame src="frame_example_left.html" />
<frame src="frame_example_right.html" />
</frameset>
</html>
this is the 2nd .html doc
<html>
<body style="background-color:green">
<p>This is the left frame (frame_example_left.html).</p>
</body>
</html>
This is the 3rd .html doc. They are all in the same folder on my desktop.
The right frame (frame_example_right.html):
<html>
<body style="background-color:yellow">
<p>This is the right frame (frame_example_right.html).</p>
</body>
</html>
PLease Help!
I tried what the first answe adxised....still didn't work!