Probalby really simple

admin

Administrator
Staff member
I am working on a simple knowledge base type web page for a friend of mine. I am working with a single multipage document. My question is on menu bar, that links to specific pages how can I set it up that when specific links are selected they will take you to specific pages or portions of the same document or file. I am hoping that it would be easier than breaking the document apart and linking each file individually. Any suggestions or references would be very much appreciated. <br />
<br />
Thanks in advance<!--content-->If you give an element the ID of "foo" then you can link to it, in the same document, with <a href=http://www.webdeveloper.com/forum/archive/index.php/"#foo">Foo</a> or, in some other document "fie.html", <a href="fie.html#foo">Foo</a>. And you want to be making good use of the LINK element for those fine browsers that support it. See <!-- m --><a class="postlink" href="http://www.w3.org/TR/html4/struct/links.html">http://www.w3.org/TR/html4/struct/links.html</a><!-- m -->. -<br />
When creating "#name" anchor links, remember that any element that already has an id="" for styles is also an anchorname!<br />
<br />
Have fun,<br />
El<!--content-->
 
Back
Top