✍️ HTML Basics: The Paragraph Tag
In HTML, paragraphs are defined using the <p>
tag. It automatically adds space before and after the content to make it easier to read.
🔹 Basic Syntax:
<p>This is a paragraph in HTML.</p> <p>Here is another paragraph with more text.</p>
📋 Quick Notes:
- Each
<p>
tag creates a new paragraph. - Browsers automatically add space between paragraphs.
- Paragraphs help separate ideas clearly for better readability.
✅ Output Preview:
This is a paragraph in HTML.
Here is another paragraph with more text.
📌 Posted by Anushka • One step closer to mastering HTML!