Forum Moderators: open

Message Too Old, No Replies

Creating Navigation Frame

using table or frames in creating menu bar

         

maryrose

6:56 pm on Apr 21, 2006 (gmt 0)

10+ Year Member



I have difficulty creating my navigation frame.I used frameset but did'nt work.Any help,pls!TY.

eelixduppy

7:47 pm on Apr 21, 2006 (gmt 0)



Hello...

the general syntax for frameset is as follows...

<frameset cols="25%,75%">
<frame src="frame_a.html">
<frame src="frame_b.html">
</frameset>

I don't know if this helps any.

maryrose

8:15 pm on Apr 21, 2006 (gmt 0)

10+ Year Member



I mean frames which contains links to different websites.It consist of information like home,contact us,products,etc.A frame divided by 6 links.Pls. help me.

maryrose

8:18 pm on Apr 21, 2006 (gmt 0)

10+ Year Member



Im'm going to put it at the top of my index.html.This frames serves as my navigation frame.I already use frameset but didnt work.Can I use table?Ty.

eelixduppy

8:29 pm on Apr 21, 2006 (gmt 0)



Ok...

//////links.html//////

<html>
<body>
<a href="http://www.google.com target="frame2">Google</a><br>
<a href="http://www.yahoo.com" target="frame2">Yahoo</a><bR>
</body>
</html>

//////index.html//////

<html>
<body>
<frameset cols="120,*">
<frame src="links.html">
<frame src="main_page.html" name="frame2">
</frameset>
</body>
</html>

this should work