Type something to search...

HTML Headings and Paragraphs

HTML Headings

Headings are used to define the structure of a web page. HTML provides six levels of headings, from <h1> to <h6>.

Example:

<h1>Main Heading</h1>
<h2>Subheading</h2>
<h3>Sub-subheading</h3>

HTML Paragraphs

Paragraphs are defined using the <p> tag.

Example:

<p>This is a paragraph.</p>

Next Steps

In the next tutorial, we will explore HTML Lists, where you will learn how to organize content using ordered and unordered lists.

Next: HTML Lists →