Thu 3 Dec 2009
You can add links to your site in a variety of ways. Make an image a link, make text a link, and the next step is making the link open in a new window.
by the way: the code below that is <br> will make the next link appear right below the first link.
1. To add a simple text link:
<a href=”http://www.yourlink.com”>your link text</a><br>
2. To add an image or button as a link: .
<a href=”http://www.plusonegraphics.com”><img src=”button.gif” border=”0″></a><br>
NOTE: in the above example the border=”0″ tag will remove any border from your image
3. To add buttons, spacing them farther apart vertically on the page, add two <br> tags
<a href=”http://www.plusonegraphics.com” target=”_blank”><img src=”button.gif” border=”0″></a><br><br>
Opening Links in a new window.
Add this code to the end of the link
target=”_blank”
So your link would look something like this
<a href=”http://www.plusonegraphics.com” target=”_blank”>web design</a>
No Responses to “ linking images ”