HTML headings are denoted by the <h1> to <h6> tags.
The <h1> tag represents the most significant heading, while <h6> represents the least significant heading.
Example
<h1>This is heading 1</h1> <h2>This is heading 2</h2> <h3>This is heading 3</h3> |
HTML paragraphs are specified using the <p> tag.
Example
<p>This is a paragraph.</p> <p>This is another paragraph.</p> |