ALL LESSONS
Module 3
Basic HTML Tags and Text Formatting
Apr 4, 2026
1 min read
Common HTML Elements
Every HTML page uses a few foundational tags like <p>, <strong>, and <em>.
Paragraphs and Line Breaks
Use <p> for paragraphs and <br> for line breaks.
First paragraph.
<p>Second paragraph.<br>with a line break.</p>
Formatting Text
Use <strong> for bold and <em> for emphasis.
Important info and some emphasis.