The HTML web page must contain HTML tag, head tag, title tag, body tag and many more tags.
HTML tag: encloses the entire HTML document. HTML tag divides the web page into two sections i.e. head section and body section.
- Head section: is defined by <head> tag, it represents the document's (web page) header, which can keep other HTML tags like <title> tag, <link> tag etc.
- Title tag: The <title> tag is use to mention the document's title.
- Link tag: The <link> tag is use to link the external CSS file.
- Body tag: Use to display the contents of the web page. It is the visible area where the user read information provided by you.
The basic structure of the HTML page is shown below: