How to link Images
The basic code:
Explanation:
<img> |
An image is used; |
target="_blank" |
"blank" stands for new window, meaning that the link opens in a new window; |
border="0" | With the attribute, you get a border around your image. If you enter 0 here, no border will be created; |
src="URL" | This is the source of your image, meaning the URL; |
Target Codes:
_blank | The link opens in a new window; |
_self | The link opens in the same window/tab; |
_parent | The link opens in a parent frame; |
_top | The link opens in the topmost frame; |
framename | The link opens in the selected window (frame); |
« back