<!DOCTYPE html> |
Document Type |
This declaration is used to specify the document type and version of HTML that the web page is written in. It helps the web browser to render the page correctly. |
<html></html> |
html |
This tag wraps all the content of the HTML document, indicating the beginning and end of the HTML code. |
<head></head> |
head |
The head is used to contain meta-information, links, and the title. |
<body></body> |
body |
The body tag represents the content of an HTML document. It encapsulate all the visible content that users see and interact with when they visit a webpage. |
<main></main> |
main |
Inside of this tag is the main content of the webpage. |
<footer></footer> |
footer |
The footer tag goes at the end of a webpage. It contains items sucha s copyright information, contact info, and additional links. |
<section></section> |
section |
The section element is used to group content, usually thematically. |
<article></article> |
article |
The article element is used to represent a self-contained piece of content that can be independently distributed or reused. |
<aside></aside> |
aside |
The aside element is used for things not part of the main content but still related to it. |