Get to the content - 11/19/2004 15:58:41
I'm finding the coding for.... ok.. it's like this.. you click example 'HERE' you'll go down the page to 'HERE'. The page have subtopics like 'HERE', 'THERE' and so on.
So to get back to top i should use <a href="#">Top</a> right? That's to get to top.. but to get below? I mean to the subtopic we want. I'm still searching it through the net and looks like the coding are hiding from me
A little help please
Thanks
_____________________________
pesty
Posts: 188 Joined: 7/2/2004 From: USA Status: offline
RE: Get to the content - 11/19/2004 16:18:19
Hi Adila,
The tag you are referring to is a anchor tag or bookmark.
Here is the tag you need to use to jump from one section of the document or page to another section of the same page.
This a an anchor tag or bookmark <a name="put your subtitle name here">Text here</a>
To create a link to the anchor you just created, use this tag <a href="#your subtitle name here">Text here</a>
Example
<p> <a href="#emp">Employees</a> </p>
<H3 align=center><a name="emp">Employees</a></h3> This is where the section you jump to begins. You would enter your text here for eveyone to see.