Smart ways to make money online.

Smart ways to make money online - HTML Tutorial - Hyperlinks.

 

Linking -- Inserting Hyperlinks

Hyperlinks are links that take you to another page or web site. You create them by using the code
below:

<a href="http://www.smarttoad.com">Name of link</a>

The link would appear as, Name of link

Open Links in a New Browser Window

If you don't want people to leave your site completely when they click on links to other sites, you can set the link to open up a new window. The "target" attribute allows you to do this:

<a href="http://www.smarttoad.com" target="_blank" >Name of Link</a>

Creating Email Links

Creating email links are just as simple. All you need is the "mailto" function to get this to work properly:

<a href="mailto:admin@smarttoad.com">Email Me</a>

 

Lesson # 7 : HTML Tutorial - Anchor Links

HOMEPAGE