HTML Element
An HTML element usually consists of a start tag and an end tag, Content is placed between these start and end tags:
<Start tagname> Content gose here …<End tagname>
Example :- <p> My First paragraph. HTML Element tag </p>
Example Explained :-
The <html> start element tag defines all html documents.
This <html> a start tag and </html> this is a end tag:
Inside the <html> element is the <body> element.
— The output of the above example will look something like this:-