HTML tags - Linkage, image and multimedia Tags


<A HREF="URL"> link text/image </A>

Provides a link to the URL in the <A HREF> tag, the </A> denotes the end of the link tag.


<A HREF="#???"> link text/image </A>

Provides a link to an <A NAME="??"> tag in the same document, </A> denotes the end of the link tag.


<A HREF="URL#???"> link text/image </A>
Provides a link to an <A NAME="??"> tag in the document given in the URL, </A> denotes the end of the link tag.


Read more...
 
Top