Never been to CodeSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

About this user

Jan

1 total

On This Page:

  1. 1 Make Linked Image

Make Linked Image

The facets of linking an image with a url, and make clickable.. Link opens in new page/tab.



<a href="___________WEB LINK HERE_________" 
target="_blank" 
title="___________TITLE FOR WEB LINK HERE_________" 
STYLE="TEXT-DECORATION: NONE">

<img src="___________IMAGE LINK HERE_________" 
alt="___________NO IMAGE?? THIS TEXT BE SHOWN INSTEAD_________" 
title=" ___________MOUSE-OVER LITTLE POP-UP IMAGE TITLE HERE_________ " border="0">

</a>




can also add height and width parameters to the image tag if required. ( height="###" width="###" )
1 total

On This Page:

  1. 1 Make Linked Image