0% found this document useful (0 votes)
4 views1 page

HTML Basics: Doctype and Headings

The document discusses the <!DOCTYPE> declaration which represents the document type and helps browsers display pages correctly. It also covers HTML headings which are defined using tags from <h1> to <h6> with <h1> being the most important and <h6> the least important. An example is provided demonstrating the different heading levels.

Uploaded by

ansh21kumar0
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

HTML Basics: Doctype and Headings

The document discusses the <!DOCTYPE> declaration which represents the document type and helps browsers display pages correctly. It also covers HTML headings which are defined using tags from <h1> to <h6> with <h1> being the most important and <h6> the least important. An example is provided demonstrating the different heading levels.

Uploaded by

ansh21kumar0
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

3/1/24, 10:17 AM HTML Basic

 Tutorials  Exercises  Services   Sign Up Log in


The <!DOCTYPE> Declaration
HTML
 CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO [Link] C
The <!DOCTYPE> declaration represents the document type, and helps browsers to
display web pages correctly.

It must only appear once, at the top of the page (before any HTML tags).

The <!DOCTYPE> declaration is not case sensitive.

The <!DOCTYPE> declaration for HTML5 is:

<!DOCTYPE html>

HTML Headings
HTML headings are defined with the <h1> to <h6> tags.

<h1> defines the most important heading. <h6> defines the least important
heading:

Example
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>

Try it Yourself »

ADVERTISEMENT

[Link] 2/10

You might also like