Elder_Code

Quote | Reply |
|
basic html
replied on: 2/1/2003 12:02:42 AM
just a image :
<img src="URL">
new window, no border:
<a href="URL" target="_blank"><img src="URL" border="0"></a>
onmouseover swap, no link
<img src="URL1" onmouseover="this.src='URL2'" onmouseout="this.src='URL1'">
onmouseover swap, with link
<a href="URL" target="_blank"><img src="URL1" onmouseover="this.src='URL2'" onmouseout="this.src='URL1'" border="0"></a>
etc etc etc wanna learn more on html ? click here
|