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