HTML Documents

All HTML Documents declaration using <!DOCTYPE html> Tag.

HTML Document Start with <html> tag and end with </html> tag.

Visible part of HTML Document in between <body> and </body> tag.

Example:-

<!DOCTYPE html>
<html>
<body>
<h1>Heading</h1>
<p>paragraph</p>
</body>
</html>

<!DOCTYPE> Declaration

The <!DOCTYPE> declaration in defines a document type, and help to browser to display web page.

<!DOCTYPE> Tag in before <html> tag.

Example:-

<!DOCTYPE html>

HTML Heading

HTML Heading are define <h1> to <h6> tag.

<h1> tag used to big heading and <h6> tag used to small heading in page.
Used in between <body> tag.

Example:-

<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>

Output:-


HTML Paragraph

HTML Paragraph define in <p> tag.
Used in between <body> tag.

Example:-

<p>First Paragraph. </p>
<p>Second Paragraph.</p>

HTML Link

HTML Link are define <a> tag.

Example:-

<!DOCTYPE html>
<!DOCTYPE html>
<html>
<body>
<a href="https://htmleasystudy.blogspot.com">Link</a>
</body>
</html>