hh89 0 Report post Posted July 25, 2006 (edited) Ok...another question...may sound stupid, but we're all stupid...how'd I be able to create an image link. Uh...let me rephrase this: If I were to create an "Enter" image and wanted people to click the image to enter to a certain page, how would I do it without some sort of the famous "Blue Line" around it? Any help would be greatly appreciated... Edited July 26, 2006 by hh89 (see edit history) Share this post Link to post Share on other sites
brandice 0 Report post Posted July 26, 2006 simply- <a href="URL OF THE LINK"><img src="URL OF PICTURE" border="0"></a> Share this post Link to post Share on other sites
hh89 0 Report post Posted July 26, 2006 brandice, it works, thanks a lot. Share this post Link to post Share on other sites
jlhaslip 4 Report post Posted July 26, 2006 There are no stupid questions here on the Forum if the purpose is to learn something new and useful. Share this post Link to post Share on other sites
farsiscript 0 Report post Posted September 17, 2006 thanks dear jlhaslip and brandice and hh89 HTML is very important and all webmaster must learn htmlI have new question about linkingi want to make one div with link , for example user when click at div page link at another page !is it possible ? Share this post Link to post Share on other sites
jlhaslip 4 Report post Posted September 17, 2006 Yes.Using the code from above: <a href="URL OF THE LINK"><img src="URL OF PICTURE" border="0"></a> change the "URL OF THE LINK" to the page which you want to link to.Example: <html>< ... etcetera ... ><div><a href="http://your_ I_want_to_Link_to.html"><img src="URL OF PICTURE" border="0"></a></div>< ... etcetera ... ></html> Change : "your_account.trap17" to "your actual subdomain at the trapChange : "/folder/subfolder/page_ I_want_to_Link_to.html" to the path and file name of the actual file you which to go to.(remove the quotation marks)For a page named "test_page.html on my site in the "checking" folder, I would have a link like this:<div><a href="http://forums.xisto.com/no_longer_exists/ src="image.gif" border="0"></a></div> Check out the following link for a good tutorial about 'anchor' or '<a>' tags: http://www.w3schools.com/Hope this helps you. Share this post Link to post Share on other sites