THE ONLY HTML TAG YOU NEED TO KNOW!!

 

<a>

This tag allows you to connect one web page to another.

 

By adding to the tag the appropriate HTML code below, you can do the following:

 

  1. Link to a web page of your own by writing <a href="filename.html">
  2. Link to an external web page by writing <a href="http://www…….">
  3. Link to your email address by writing
    <a href="mailto:myemailaddress@my.server.com"> (changing 'myemailaddress@my.server.com' to whatever your own email address is).

AFTER THE TAG COMMAND, PLACE THE TEXT YOU WANT HIGHLIGHTED ON YOUR PAGE AS THE LINK.

FINALLY, REMEMBER TO CLOSE THE TAG IN THE NORMAL WAY:

</a>

 

Return to Sharing our Practice