HeartBreaker69
03-06-2003, 02:13 AM
Could anyone help me with writing the HTML for the top and left frames? I've been trying to do it with help from the main site but im really confused lol
|
View Full Version : Top and Left Frames HeartBreaker69 03-06-2003, 02:13 AM Could anyone help me with writing the HTML for the top and left frames? I've been trying to do it with help from the main site but im really confused lol Sheila 03-06-2003, 10:33 AM (http://www.lissaexplains.com/frames.shtml) Save this as index.html <HTML><HEAD><TITLE>title</TITLE></HEAD> <FRAMESET ROWS="20%, 80%"> <FRAME SRC="up.html" NAME="up"> <FRAMESET COLS="30%,70%"> <FRAME SRC="left.html" NAME="left"> <FRAME SRC="right.html" NAME="right"> </FRAMESET> </FRAMESET> <NOFRAMES> Sorry, but your browser does not support frames. </NOFRAMES> </HTML> Save this as up.html <HTML> <HEAD> <TITLE>Your page title goes here</TITLE> </HEAD> <BODY> ---Everything that appears on your page will be entered here, text, images etc.--- </BODY> </HTML> Save this as left.html <HTML> <HEAD> <TITLE>Your page title goes here</TITLE> </HEAD> <BODY> ---Everything that appears on your page will be entered here, text, images etc.--- </BODY> </HTML> Save this as right.html <HTML> <HEAD> <TITLE>Your page title goes here</TITLE> </HEAD> <BODY> ---Everything that appears on your page will be entered here, text, images etc.--- </BODY> </HTML> If you have your links on the left side and want them to appear on the right side. You have to do this to your links <a href="Your Link" target="right">Link Name</a> HeartBreaker69 03-06-2003, 10:12 PM thanks!! |