HTML attributes provide additional information about HTML elements. They are always specified in the start tag and usually come in name-value pairs, like name="value.
Some Important Features of HTML Attributes:
1. Define properties or settings for elements.
<img src="image.jpg"alt="Example Image" >
2. Always in the opening tag.
<a href="https://example.com" > Visit </a>
3. Value is always enclosed in quotes (preferably double quotes " ").