Archive for July, 2009
Many non technical people are frequently publishing posts in forums and forms on web sites these days. Wether it’s facebook or a support forum or a CV online. Sure there are plenty of resources to get the answer from all over the web if you know where to look. To make matters easy I am going to do it right here due to numerous requests.
To do a line like this:
Welcome to Anjo Promotions and contact me by email.
The text would look like this in HTML
Welcome to <a href=”http://www.anjo-promotions.co.uk/”> Anjo Promotions</a> and contact me by <a href=”mailto:info@anjo-promotions.co.uk>email</a>
The important thing to remember is <a href”http://www.whatever.net”> before the word which is linked </a> to switch the link off.
To make the link go to a new browser window or tab add target=”_blank” after the link like so:
<a href=”http://www.anjo-promotions.co.uk/” target=”_blank”> link text </a>
The mailto:name@whatever.net forces your email program to open to send an email to the address specified.
I hope this clears up a few mysteries for the non technically minded.