Smart ways to make money online.

Smart ways to make money online - HTML Tutorial - Anchor Links.

 

If you want to create a link that will take the visitor to another section of the current page rather than a new page or site, then you need to create an anchor link. There are two steps to this process:

1) First, go to the place in your HTML code where you want the visitor to land when they click on the link.

Insert the code <a name="name1"></a> right before that area ("name1" is just the name of the anchor I chose. You can all it anything you want.)

Let's say you were setting up a glossary and the A section starts here. You could name the anchor <a name="a"></a>. Remember this part is not visible to the visitor.

2) Now to link to that section of the page, use the hyperlink code: <a href="#name1">click here</a>

Now when your visitors click on that link, they will be taken to that section of the page. Follow the above steps to create additional anchor links within that page.

Lesson # 8 : HTML Tutorial - Inserting Images

HOMEPAGE