HTML5 Attributes
Attributes mean extra features.
such as, when we want to add some extra features in html5 tag.
then this is called attributes. some example below:
<img src="img.jpg" width="700" height="800">
<p style="color:navy;">This is a navy paragraph.</p>
//we see the IMG and p tag some attributes. here width, height, and style are also called attributes.

No comments