<html>
: This tag represents the root of an HTML document and is used to enclose all other HTML elements.
Copy to Clipboard
<head>
: This tag contains metadata about the document, such as the title, character set, and stylesheets.
Copy to Clipboard
<body>
: This tag contains the visible content of the document, such as headings, paragraphs, and images.
Copy to Clipboard
<h1>
–<h6>
: These tags represent headings of different levels, with<h1>
being the highest level and<h6>
being the lowest.
Copy to Clipboard
<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
: This tag represents an image and is used to embed an image file in the document.
Copy to Clipboard
8.: This tag represents a hyperlink to another webpage or a specific location on the current webpage
Copy to Clipboard
Leave A Comment