, Basic HTML Page Tags
Tag Description
<!DOCTYPE html> It is used to tell the browser the type of document.
<html> This tag is container for all other HTML tags.
<head> Tag to define the head portion of the document.
<title> It is used to set title of the document shown on the browser's
tab
<body> <body> contains all content of HTML document that is shown
to the user
<p> <p> is used to define the paragraph
*Note: In HTML every tag must have an end tag, For Example, if you are inserting a
paragraph with <p> it should have an end tag </p>, There are some exception tags that
don't have an end tag like <!DOCTYPE html>, <br>.