sir,please tell me how can i put more then one picture in (href attribute)in html using notepad.
href attribute in HTML using notepad
Collapse
X
-
Tags: None
-
-
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
Comment