What is HTML Elements?
An HTML element is an individual component of an HTML document or web page. HTML is composed of a tree of HTML nodes, such as text nodes.The HTML element is everything from the start tag to the end tag,
Start Tag "<>"
End Tag "</>"
Example:
Paragraph.
Paragraph Start Tag is = "<p>Paragraph End Tag is = "</p>
<!DOCTYPE html>
<html>
<body>
<h1>Heading</h1>
<p>Paragraph.</p>
</body>
</html>