I Want A Html Code To Put A Pic On My Website To Be A Link To My Home Page. Like When You Go To A Site And You Have To Click Here To Enter Or Click On The Persons Logo To Enter. That Is What I Want. Can You Tell Me How To Get That??
Thanks
Gabby
I Want A Html Code To Put A Pic On My Website To Be A Link To My Home Page. Like When You Go To A Site And You Have To Click Here To Enter Or Click On The Persons Logo To Enter. That Is What I Want. Can You Tell Me How To Get That??
Thanks
Gabby
um.....
<img src="image file" onclick="page you want to go to url"/>
replace the parts with the path names, and be sure to put a description in the alt tag, that way if for some reason your image couldn't load there will at least be a text representation.Code:<a href="_URL_TO_PAGE_"><img src="_path_to_image_" width="__" height="__" alt="_brief_description_" /></a>
Thanks A Bunch
You will probably also want to set the border to zero (border="0"), otherwise you might get an unwanted blue line around the picture.
You can also change that with css, but it sounds as if this will be easier for you.Code:<a href="_URL_TO_PAGE_"><img src="_path_to_image_" border="0" width="__" height="__" alt="_brief_description_" /></a>
They are depreciated (or so Twey said), and CSS should be used.also, width and height aren't valid in some instances, best to leave them out.
- Mike
Sorry, GF on comp.
Last edited by boxxertrumps; 04-23-2007 at 10:50 PM. Reason: Bad message
Bookmarks