HTML Attributes
- HTML Attributes provide metadata about an element
- Some attributes define behavior
- The
srcattribute in<img src="abc.png"> - The
hrefattribute in<a href="my-page.html"> - The
startattribute in<ol start="5">
- The
- Others give meaning to elements
- The
idattribute identifies an element to be referenced elsewhere - The
classattribute marks elements as part of a special category
- The
11 / 22