List Only

Any help with creating direct links to other websites, from my own?

Right now, I am working on my local library's website using the Microsoft Publisher 2003 program as requested by my employer. She has asked me to place direct links to certain websites from the Library's website, to others involving social events, audiobooks, career cruising, help lines, etc. How exactly would I be able to link other websites to mine, by only clicking on the graphic to be re-directed? Thanks for your help. =]

Public Comments

  1. To create a hyperlink in HTML you use the anchor tag: <a href="URL TO LINK" title="SOME SITE NAME">TEXT TO DISPLAY</a> TEXT TO DISPLAY will become a hyperlink that is linked to the URL you specify in the href attribute. If you want to link an image, you would simply replace the TEXT TO DISPLAY with an image tag. <a href="URL TO LINK" title="SOME SITE NAME"> <img src="myImage.jpg" alt="No Image" /> </a> Instead of a plain text hyperlink, the image itself will be the link to the URL that you specify in the href attribute of your anchor tag. This is called nesting elements, because the img tag is nested inside the anchor tag.
  2. Making an image a link: <p><a href="URL path to external link" title="Mouseover Description"><img style="width: XXpx; height: YYpx; border: 0;" src="Path to image" alt="Text Description"></a></p> If site does not host images, then you MUST host your image online at any good image hosting site. The URL MUST be the DIRECT link to the image alone and not to the page the image is on. You can change the "p" tags to div tags and style as needed. Practice Your Image Link Code Online: http://www.w3schools.com/HTML/tryit.asp?filename=tryhtml_imglink See following sites for navigation menus: http://www.dynamicdrive.com/dynamicindex1/ http://www.cssplay.co.uk/menus/ How to Style an Unordered List with CSS: http://www.webreference.com/programming/css_style2/index.html How To: http://www.w3.org/TR/WCAG10-HTML-TECHS/#links http://www.creativepro.com/article/dreamweaver-how-create-you-are-here-navigation-links http://efuse.com/Design/navigation.html Ron
Powered by Yahoo! Answers