How To Create An HTML Hyperlink
Using HTML code to create a hyperlink looks something like this:
<A>HREF="http://customersupport.networksolutions.com">Click here to go to the Network Solutions FAQ</A>
The HTML code breaks down as follows:
< > – surrounds the HTML code
A – stands for Anchor and begins the link to another page
HREF – stands for Hypertext Reference and tells the browser where the link should take the visitor
http://customersupport.networksolutions.com – the complete address for the link
/A – ends or closes the HTML hyperlink command
The text that you want to actually appear on the page as the link is in between the opening <A HREF> code and closing </A> code.
The above HTML code translates on the Web page as:





