I've been searching the web for the answer to this question, and I've found people addressing my question, but the answers don't help me. I must be missing a step or something.
I'm trying to build a simple website with HTML. I learned HTML in high school a few years ago, and due to lack of use, I've forgotten most of it. My layout is to have 3 frames. One at the top that I'll use as a title/header. One on the left, which will be my links frame, where I will list all of my links. The main part of the page will be place on the bottom right. I want to be able to click on a link from my frame on the left and have it open on the frame on the right. From what I read I have to name my frames. Ok, I can do that, but where I name the frames and where the links are are in two different files. How can I do this?
This is what I have (I know it's not much...I'm extremely rusty).
Header File (the very top of the page):
Links/Navigation (on the bottom left of the page):
Main Body of the page (on the bottom right of the page):
Then, this is the file that pulls all the frames together in 1 page:
I'm sure there is a much easier way to post this issue, I just don't know how. In the "Links/Navigation" section I want to click on my "drowningtosurv ive.html" link and have it open in my "Main Body" frame.
I'm trying to build a simple website with HTML. I learned HTML in high school a few years ago, and due to lack of use, I've forgotten most of it. My layout is to have 3 frames. One at the top that I'll use as a title/header. One on the left, which will be my links frame, where I will list all of my links. The main part of the page will be place on the bottom right. I want to be able to click on a link from my frame on the left and have it open on the frame on the right. From what I read I have to name my frames. Ok, I can do that, but where I name the frames and where the links are are in two different files. How can I do this?
This is what I have (I know it's not much...I'm extremely rusty).
Header File (the very top of the page):
Code:
<html> <body style="background-color:#eec591;"> <center> <h1>TITLE</h1> </center> </body> </html>
Links/Navigation (on the bottom left of the page):
Code:
<html> <body style="background-color:#eec591;"> NAVIGATION<br> <a href="drowningtosurvive.html" target="main">Drowning To Survive</a> </body> </html>
Main Body of the page (on the bottom right of the page):
Code:
<html> <body style="background-color:#eec591;"> Here is where stuff goes... </body> </html>
Then, this is the file that pulls all the frames together in 1 page:
Code:
<html> <frameset border=0 frameborder=0 framespacing=0 rows="10%,*"> <frame src="Header.html"> <frameset cols="20%,*%"> <frame src="Navigation.html" name="Navigation"> <frame src="Home.html" name="Main"> </frameset> </frameset> </html>
I'm sure there is a much easier way to post this issue, I just don't know how. In the "Links/Navigation" section I want to click on my "drowningtosurv ive.html" link and have it open in my "Main Body" frame.
Comment