<a href="URL Here">Text Here</a>
Where it says "URL Here", that is where you put the link you want to go to when the link is clicked on. Where it says "Text Here", you put what you want the link to say. Here are some examples:
<a href="https://www.angelfire.com/ca6/megweb">Back to Meg on the Web</a>
It will look like this when viewing the page:
Back to Meg on the Web
Now, if you are like me, you hate that line underneath the link. To get rid of this, just do this to the code:
<a href="https://www.angelfire.com/ca6/megweb" STYLE="text-decoration: NONE">Back to Meg on the Web</a>
It will do this to the link:
Back to Meg on the Web
To make an Email Link:
This is almost Indentical to the above Hyperlink code, except for a slight change. Just take a look:
<a href="mailto:EMAIL ADDRESS HERE" STYLE="text-decoration: NONE">Text Here</a>
Here is what it will look like:
Email Meg
The following are really easy, basic codes. Enjoy!