How do i set up these frames, html?

  • Thread starter Thread starter Lulu
  • Start date Start date
L

Lulu

Guest
Hi.

For my multimedia class i have to make a website which includes frames. I was wondering if and how i could get a frame going across the top of the page and another going along the left side of the page, like this:

http://i517.photobucket.com/albums/u339/miss_original19588/framesdiagram.jpg

Also, is there a way to get rid of that white line that outlines the frame? it's looks really...out of place with the rest of my website.

Thanks for your help :)
Yes we can use CSS
 
<html>
<head>
<title>Untitled Document</title>
</head>

<frameset rows="80,*" cols="*" frameborder="NO" border="0" framespacing="0">
<frame src="top.htm" name="topFrame" scrolling="NO" noresize >
<frameset cols="80,*" frameborder="NO" border="0" framespacing="0">
<frame src="side.htm" name="leftFrame" scrolling="NO" noresize>
<frame src="body.htm" name="mainFrame">
</frameset>
</frameset>
<noframes><body>

</body></noframes>
</html>
 
Back
Top