Headings and Paragraphs

The displayed code shows various HTML headings and a paragraph element.

<h1>h1 heading</h1>
<h2>h2 heading</h2>
<h3>h3 heading</h3>
<h4>h4 heading</h4>
<h5>h5 heading</h5>
<h6>h6 heading</h6>
<p>paragraph text</p>
        

In the code above, you can see the different heading levels from h1 to h6, each with unique styling, and a paragraph element. Below you see how this code is rendered:

h1 heading

h2 heading

h3 heading

h4 heading

h5 heading
h6 heading

paragraph text