Results 1 to 3 of 3

Thread: Making Images A Link

  1. #1
    Join Date
    Apr 2005
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Making Images A Link

    could someone please tell me the html code to make images into links

  2. #2
    Join Date
    Dec 2004
    Location
    UK
    Posts
    2,358
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by go_flyers_89
    could someone please tell me the html code to make images into links
    Place the img element inside an a element:

    HTML Code:
    <a href="http://www.example.com/"><img alt=""
     src="http://www.example.com/example.jpeg"></a>
    As the image won't be purely decorative, you should place a textual replacement for it in the alt attribute which is currently empty. For example, if the image contains the text, "Home", that should be the value of the alt attribute.

    Mike

  3. #3
    Join Date
    Apr 2005
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    thanks for that
    Last edited by go_flyers_89; 04-03-2005 at 02:03 PM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •