Basic Html Links



To put links on your page is a little different. The html tags you will lose is the <a> and </a>. This link you dont use by itself though...the complete link would be
<a href="url here">

The href stands for Hypertext REFerence. But this isnt all of it. If you put just that on your page you will see nothing, you have to put text to use for the link. This would be the complete link.
<a href="url here">Link text goes here</a>

To use an image for the link it would look like this
<a href="url here"><img src="url"></a>


Examples:

Basic Html
<a href="http://www.angelfire.com/games3/spades/basics.html">Basic Html</a>


<a href="http://www.angelfire.com/games3/spades/basics.html"><img src="http://www.angelfire.com/games3/spades/rsl.gif"></a>


The links with text will be automatically underlined.
Click on either one of the links and it will take you to the main page of HTML Basics.



Links to email are a little different. You need to put in "mailto: in order for it to work.

Email Link Example

bagger_girl@yahoo.com
<a href="mailto:bagger_girl@yahoo.com">bagger_girl@yahoo.com</a>



Now that you've mastered the basic link tags on to other parts....below is links to different parts of html...just click on a link and it will take you there.

Text
Fonts
Sound
Lists
Images
Links
Tables
Basic Html