• Tutorials Logic, IN
  • +91 8092939553
  • info@tutorialslogic.com

HTML Anchor and Image

Anchor

An anchor elements defines a hyperlink which create a link from one page to another page as well as files, location, or any internal or external URL in HTML document. A link can be easily added on any web page or HTML document by using <a> tag.

										    
											<a href="https://www.tutorialslogic.com">Tutorials Logic</a>
											
										

Anchor Attribute List

AttributeDescription
href-
title-

Image

An image ia a very important concept in HTML to beautify as well as to enhance visual appearance of web page in simple way. Image can be easily added on any web page or HTML document by using <img> tag.

										    
											<img src="image.jpg" alt="alt_text" title="title_text" height="10px" width="10px" />
											
										

Image Attribute List

AttributeDescription
src-
alt-
title-
height-
width-