href attribute in HTML using notepad

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • harshchaturvedi
    New Member
    • Nov 2012
    • 1

    #1

    href attribute in HTML using notepad

    sir,please tell me how can i put more then one picture in (href attribute)in html using notepad.
  • ysrikanth2011
    New Member
    • Nov 2012
    • 1

    #2
    As per my knowledge we can only use one image using href. check out the syntax.

    Comment

    • farazi482
      New Member
      • Nov 2012
      • 2

      #3
      you can only add one attribute once in HTML Tag.
      <a href="image.jpg " href="imag2.jpg "> Some text </a>
      This is invalid markup although it will execute SOME TEXT Link

      <img src="image.jpg" src="imag2.jpg" /> is also invalid markup but it will execute (SHOW) the first image(image.jpg ) and ignore the duplicated attribute.

      Comment

      Working...