- In HTML you can define element of start tag, write content, and end tag
- Rule of HTML element is define everything between start tag and the end tag
<h1>Give Heading</h1>
<p>Write Paragraph</p>
The <html> element is the root element and it defines the whole HTML document.
It has a start tag <html> and an end tag </html>.
Then, inside the <html> element there is a <body> element:
<html>
<body>
<h1>Write Heading</h1>
<p>Write paragraph.</p>
</body>
</html>
* For more information and learn click here