The basic tags of the HTM

What are the basic tags of the HTML . List 5 of them?

  Here are five basic HTML tags: 1. : This tag is the root element of an HTML document, indicating that the document is written in HTML. ...   2. : This tag contains meta-information about the document, such as the title, character set, and links to stylesheets or scripts. Document Title   3. : This tag contains the content of the HTML document, including text, images, links, and other media that will be displayed on the web page. Hello, World! This is a paragraph.   4. <h1> - </h1><h6>: These tags are used for headings, with </h6><h1> being the highest level (largest) and </h1><h6> the lowest level (smallest). Main Heading Subheading 5. <p>: This tag is used to define a paragraph of text. This is a paragraph of text. These tags form the foundational structure of an HTML document and are essential for creating web pages. </p></h6>    

Sample Answer