1. <html>: This tag represents the root of an HTML document and is used to enclose all other HTML elements.
Copy to Clipboard
  1. <head>: This tag contains metadata about the document, such as the title, character set, and stylesheets.
Copy to Clipboard
  1. <body>: This tag contains the visible content of the document, such as headings, paragraphs, and images.
Copy to Clipboard
  1. <h1><h6>: These tags represent headings of different levels, with <h1> being the highest level and <h6> being the lowest.
Copy to Clipboard
  1. <p>: This tag represents a paragraph of text.
Copy to Clipboard

6.<div>: This tag represents a division or section in the document and is often used as a container for other HTML elements.

Copy to Clipboard
  1. : This tag represents an image and is used to embed an image file in the document.
Copy to Clipboard
Copy to Clipboard