HTML Paragraph Tag โ€“ Complete Guide with Examples

Himmat Kumar Apr 8, 2025, 7:20 PM
HTML
Views 1248
Blog Thumbnail

๐Ÿ”น What is the <p> Tag, And Its Uses?

<p> Tag in HTML is used to define a single paragraph. Since it is a block-level element, it adds a margin to the spacing on all four sides, which helps in the readability of your content.

This is a paragraph of text.

๐Ÿง  Key Features

  • Block level element.
  • It will give you a default top and bottom margin.
  • You cannot add block elements such as <div>, <section>, etc.
  • It must be closed with </p>.

๐Ÿงช Examples

โœ… Simple Paragraph

This is a basic paragraph.

โœ… Paragraph with Formatting

This is bold and italic.

โœ… With Line Break

Line one.
Line two.

โŒ Incorrect Usage

Invalid paragraph placeholder
block inside

โš ๏ธ Block elements like <div> should not be placed inside a paragraph tag.

๐ŸŽจ Styling with Tailwind

You can easily manage the style of your paragraphs using Tailwind, by creating a p tag with the css class; โ€œtext-lg leading-relaxedโ€

This is a styled paragraph using Tailwind

As a placeholder for a Tailwind styled paragraph.

๐Ÿ“Œ Best Practices

  • You can use one <p> tag for a single idea or section of content.
  • Never place block elements inside a paragraph tag.

Comments

Please login to leave a comment.

No comments yet.

Related Posts

html-css-js-online-compiler
380 viewsHTML
Himmat Regar โ€ข May 30, 2025, 6:54 AM

HTML CSS JS Online Compiler โ€“ Best Free Tools to Code a...

html-images-responsive-media-guide
1189 viewsHTML
Himmat Regar โ€ข Jun 2, 2025, 6:46 PM

Images & Responsive Media in HTML โ€“ Formats, <picture>,...

comments-in-html
838 viewsHTML
Himmat Kumar โ€ข Apr 10, 2025, 11:19 AM

Comments in HTML โ€“ Guide with Examples

what-is-html-full-explanation
482 viewsHTML
Himmat Kumar โ€ข Oct 13, 2023, 11:40 PM

What is HTML? Full Explanation and Guide

basic-structure-of-an-html-document
1201 viewsHTML
Himmat Kumar โ€ข Apr 5, 2025, 7:10 AM

Basic Structure of an HTML Document

html-tables-for-data-guide
1100 viewsHTML
Himmat Regar โ€ข Jun 2, 2025, 6:54 PM

HTML Tables for Data โ€” Not Layout! Semantics, Accessibi...

responsive-meta-seo-friendly-markup-2025
448 viewsHTML
Himmat Regar โ€ข Jun 23, 2025, 4:23 PM

Mastering Responsive Meta & SEO-Friendly Markup in 2025

html-tags
449 viewsHTML
Himmat Kumar โ€ข Oct 19, 2023, 2:45 AM

HTML Tags

hyperlinks-and-media-embedding-2025
504 viewsHTML
Himmat Regar โ€ข Jun 23, 2025, 4:37 PM

Hyperlinks & Media: Embedding Content the Right Way in ...

html-performance-tricks-2025
1134 viewsHTML
Himmat Regar โ€ข Jun 2, 2025, 7:02 PM

HTML Performance Tricks 2025 โ€“ Preload, Async/Defer, Cr...