
The <p> element:
<p>This is my first paragraph.</p>
The <p> element defines a paragraph in the HTML document. The element has a start tag <p> and an end tag </p>. The element content is: This is my first paragraph.
The <body> element:
<body> <p>This is my first paragraph.</p> </body>
The <body> element defines the body of the HTML document. The element has a start tag
and an end tag </body>. The element content is another HTML element (a p element).The <html> element:
<html> <body> <p>This is my first paragraph.</p> </body> </html>
The <html> element defines the whole HTML document. The element has a start tag <html> and an end tag </html>. The element content is another HTML element (the body element).