|
|
Author: * Laurels Curius -
43 Posts
on this thread out of
2,713 Posts
sitewide.
Date: Oct 11, 2004 - 16:15
Q: How do I link to another site?
A: <a href="complete url of site">Name of Site</a>
* The complete url of the site includes the 'http://', simply open up a new window, go to the desired site, highlight and copy the entire url in the address bar and paste it into the link code.
* To have the link open up a new window when clicked on, enter target="_new" or target="_blank" after the url inside the link code.
* To change the color of the link without changing the color of all links in a page, add some style to it. Enter style="color: color of choice" after the url inside the link code.
Example: <a href="http://www.ancientworlds.net" target="_blank" style="color: white">Visit AncientWorlds</a> renders this:
Visit AncientWorlds
|
|