Code:
<a href=http://yourdomain.com/ />URL</a>
Basic url.Output: URL
By default that will open in the same page, if you want it to open in a new page you add this.
Code:
<a href=http://yourdomain.com/ target='_BLANK' />URL</a>
You can also use target to select an iframe so the url will open in the iframe.You can create a label so a link can go to a spacific part of the page without the user scrolling for it.
Code:
<a name='scroll'>No need to scroll to here</a>
To jump directly to that you would use a normal hyperlink followed by #scrollCode:
<a href=http://yourdomain.com/scroll.php#scroll />URL</a>
Create a mailto
To create an email link, the code is identical accept one tiny piece.
discuss this topic to forum
