The general structure of HTML documents contain the two section : They are Head and Body
Head Section : The head section contains the Title that identifies the first part of your HTML coded document .
Body Section : The body section is where we actually do most of our works that includes text,images,videos and other elements that HTML provide all our content .
The General form of HTML document is :
<HTML>
<HEAD>
<TITLE>Title of the web page</TITLE>
</HEAD>
<BODY>
Text which you want to display
</BODY>
<HTML>
Head Section : The head section contains the Title that identifies the first part of your HTML coded document .
Body Section : The body section is where we actually do most of our works that includes text,images,videos and other elements that HTML provide all our content .
The General form of HTML document is :
<HTML>
<HEAD>
<TITLE>Title of the web page</TITLE>
</HEAD>
<BODY>
Text which you want to display
</BODY>
<HTML>