HTML basic structure

Notes:

The basic structure or typical structure of an HTML Document:

<html>
<head>
</head>
<body>
</body>
</html>

HTML - Structure of a typical web page :
Every web page or web document or html page is divided into two sections. First one is head section and the other is body section.
So, We write opening html tag and closing html tag to indicate the beginning and end of the html document.
We write opening head tag and closing head tag to indicate beginning and end of the head section.
We write opening body tag and closing body tag to indicate the beginning and end of the body section.

Interview Questions: