Hyperlinks
Attributes
- title
- target
Standard link to another web page.
<a href="http://www.ualr.edu">About Me</a>
Anchor Links
The destination you’d like to jump to…
<a id="top" name="top"></a>
To link to an anchor in a document you would form the link like so…
<a href="#top">Back to Top</a>
Email Links
This is a simple way to send an email via a link. Whenever possible I recommend against using this method as it requires the user to have a default email client set up on their machine.
<a href="mailto:youremail@mail.com">Email Me</a>