HTML Attributes
● HTML Elements can have attributes.● Attributes provide additional information about an element.● Attributes are written inside the start tag. <a href=”https://janityadav.com/asoldweb>This is a link</a> has an attribute and theattribute value:attribute: – href and theattribute value: “https://janityadav.com/asoldweb” HTML Elements can have multiple attributes:<img src=”https://janityadav.com/asoldweb” alt=”https://janityadav.com/asoldweb” width=”100″ height=”102″>The above HTML element…