A basic HTML web page consists of several parts:
-
Document Type Declaration: This is the first line of an HTML document that specifies the type of document being used, which is usually HTML.
-
HTML Tag: This tag tells the browser that the document is an HTML document and that everything within it should be interpreted as such.
-
Head Tag: This section contains information about the document, such as the title of the page, links to stylesheets, and scripts.
-
Body Tag: This section contains the actual content of the web page, such as text, images, and other media.
-
Header Tag: This section typically contains a logo, navigation links, and other information that appears at the top of the page.
-
Main Tag: This section contains the main content of the page, such as articles or other information.
-
Footer Tag: This section typically contains copyright information, links to other pages, and other miscellaneous information that appears at the bottom of the page.
Overall, the structure of an HTML web page is hierarchical, with tags nested inside one another to organize and structure the content.