Burnfire
07-10-2003, 06:19 PM
I need to make frames for my website. I tryed the html code that lissa gave, but it said a 404 error. I want to have a frame on the left for , my links and then one on the top for my banner.
|
View Full Version : Frame Burnfire 07-10-2003, 06:19 PM I need to make frames for my website. I tryed the html code that lissa gave, but it said a 404 error. I want to have a frame on the left for , my links and then one on the top for my banner. MaGiCSuN 07-10-2003, 06:41 PM <html> <head> <title>My Page</title> </head> <frameset rows="100,*"> <frame src="top.html" NAME="top"> <frameset cols="160,*"> <frame src="left.html" NAME="left"> <frame src="right.html" NAME="right"> </frameset> </frameset> <body> </body> <noframes> <a href="your main page.html">Click Here</a> </noframes> </html> then make the pages top.html and left.html and right.html and put content on them. The code above is the ONLY code that is on the frames page. Love, Mirna |