More
An HTML element usually consists of a Start Tag and Close Tag.
Example -
Start Tag
|
Content
|
End Tag
|
<p> |
This is paragraph content
|
</p> |
<h1> |
This is heading content
|
</h1> |
<div> | </div> | |
<br/> |
Attributes provide additional information about an Element and Attributes are always specified in the Start Tag.
Note :- All Attributes are made up of two parts , a Name and a Value & Attributes Name and Attributes Value are Case-insensitive.
Example -