Headings and Paragraphs
Headings
Headings are used to organise a webpage.
My Website
- <h1> is the main heading and most important
- <h2> is a subheading
- HTML also has <h3> to <h6> for smaller headings
Paragraphs
The <p> tag is used for normal paragraph text.
<p>Minecraft is a sandbox game where players can build and explore.</p>
Each paragraph should have an opening <p> tag and a closing </p> tag.