Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions content/html/concepts/p-tag.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
Title: 'The p Tag'
Description: 'The <p> element is used to define a paragraph in HTML.'
Subjects:
- Web Development
Tags:
- HTML
- Layout
CatalogContent:
- learn-html
---

# Paragraph Tag (<p>)

The `<p>` tag is used to create a paragraph on a webpage. It is a block-level element, meaning it always starts on a new line.

## Syntax

```html
<p>Your text goes here.</p>