Announcement

Collapse
No announcement yet.

Image HTML

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Image HTML

    I have a image uploaded with a web address. How do I insert this into an HTML tag that will make that image URL go to a link?

  • #2
    The HTML Code:
    <a href="http://www.espn.com" target="_blank> <img src="http://www.tizag.com/pics/htmlT/ahman.gif"> </a>
    will result in


    Notice that by default, many browsers add a small border around image links. This is to quickly deceifer the difference between image links and just ordinary images on a web site. Since this default is different from web browser to web browser it may be best to squelch this ambiguity by setting the border attribute to zero.


    HTML Code:
    <a href="http://www.espn.com" target="_blank>
    <img src="ahman.gif" border="0"> </a>

    Comment


    • #3
      <a href="link"><img src="image"></a>

      Thats to make the image a "link", if I understood your question correctly. (Pretty basic html haha)

      p.s. If the image is a link to an uploaded image, put the link address in this:

      <img src="image link">
      Regards,

      Comment


      • #4
        Thanks, I haven't actually coded HTML in like 5 years, haha. So thanks for your help, I can read it when needed but am not that good of coding it anymore. Not even much of the basics.

        Comment


        • #5
          No problem,

          Comment


          • #6
            Use this Nvu - The Complete Web Authoring System for Linux, Macintosh and Windows

            It's a WYSIWYG web authoring editor much like Macromedia Dreamweaver.. and It's Open Source

            Comment

            Working...
            X