From 390effc45e3909b766e7227d2871051d4eb23b64 Mon Sep 17 00:00:00 2001 From: Andrii Tarchanyn Date: Wed, 4 Feb 2026 10:33:57 +0200 Subject: [PATCH] Add p-tag concept to HTML docs --- content/html/concepts/p-tag.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 content/html/concepts/p-tag.md diff --git a/content/html/concepts/p-tag.md b/content/html/concepts/p-tag.md new file mode 100644 index 00000000000..024f28b7d87 --- /dev/null +++ b/content/html/concepts/p-tag.md @@ -0,0 +1,20 @@ +--- +Title: 'The p Tag' +Description: 'The

element is used to define a paragraph in HTML.' +Subjects: + - Web Development +Tags: + - HTML + - Layout +CatalogContent: + - learn-html +--- + +# Paragraph Tag (

) + +The `

` 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 +

Your text goes here.

\ No newline at end of file