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
Attribute | Description |
---|---|
href | - |
title | - |
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
Attribute | Description |
---|---|
src | - |
alt | - |
title | - |
height | - |
width | - |