What is HTML Attributes
What is HTML Attributes
- HTML Elements can have attributes.
- Attributes provide additional information about an element.
- Attributes are written inside the start tag:
<a href=”https://www.w3schools.com”>This is a link</a> has an attribute and the
attribute value:
attribute: – href and the
attribute value: “https://www.w3schools.com”
HTML Elements can have multiple attributes:
<img src=”digitaljanit.jpg” alt=”digitaljanit.com” width=”100″ height=”102″>
The above HTML element has four attributes:
src, alt, width, and height
HTML5 introduced a few new attributes, such as:
placeholder, autofocus, and required.
The global attributes are attributes that can be used on any HTML element.
The event attributes are attributes that can be used to define JavaScript events.