Lesson 1: Headings and Paragraphs

Headings (<h1> to <h6>) are used to define the headings or titles of sections within an HTML document. They range in importance from <h1> (most important) to <h6> (least important).

Paragraphs (<p>) are used to group and format blocks of text. They are commonly used for body text and other content on a webpage.

Lesson 2: Text Formatting

HTML provides tags for formatting text to enhance its appearance. Some common formatting tags include:

Lesson 3: Lists

HTML supports different types of lists for organizing and presenting information. These include:

For example;

INPUT

<ol>
<li>Apple</li>
<li>Banana</li>
<li>Pineaple</li>
</ol>

OUTPUT

1. Apple
2. Banana
3. Pineaple