ImHisServant
15th June 2006, 07:39 PM
I can make links to websites with the addresses at the top of the browser in a post or PM here but not in the HTML section. Do you have a code for that?
Thanks
probably the easiest HTML code, and the most basic as well
to display a normal text link:
<a href="url_of_link">text to be displayed on page</a>
to open link into a new browser window:
<a href="url_of_link" target="_blank">text to be displayed on page</a>
to make a picture act as a link:
<a href="url_of_link"><img src="url_of_image"></a>
Thanks
probably the easiest HTML code, and the most basic as well
to display a normal text link:
<a href="url_of_link">text to be displayed on page</a>
to open link into a new browser window:
<a href="url_of_link" target="_blank">text to be displayed on page</a>
to make a picture act as a link:
<a href="url_of_link"><img src="url_of_image"></a>