Interview Question

What is the <p> tag?

`<p>` should be used for its proper HTML purpose.

💡 Concept ✅ Quick Revision 🌐 HTML

Answer

`<p>` is the element used for a paragraph of text. • Browsers normally place space before and after each paragraph. • Browsers apply the native parsing and behavior defined for this element. • Using its native meaning helps assistive technology understand the content when the element has accessibility semantics.

💡 Simple Example

<p>This is one paragraph.</p>

⚡ Quick Revision

`<p>` should be used for its proper HTML purpose.