Headings and Paragraphs
HTML headings are defined with the <h1> to <h6> tags. <h1> defines the most important heading. <h6> defines the least important heading.
HTML paragraphs are defined with the <p> tag. A paragraph always starts on a new line, and browsers automatically add some white space (a margin) before and after a paragraph.
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
Use headings to structure your content hierarchically. Start with <h1> for the main title, and use <h2> to <h6> for subheadings. Use paragraphs to group related content and improve readability.