2018-10-12 15:37:13 -04:00
---
title: Paragraph Tag
---
## Paragraph
2018-11-24 02:19:15 +01:00
The HTML `<p>` element represents a paragraph of text. `<p>` usually represents a block of text that is separated from other blocks by vertical blank space.
2018-10-12 15:37:13 -04:00
### Example
``` html
< p >
2018-11-24 02:19:15 +01:00
This is a paragraph
2018-10-12 15:37:13 -04:00
< / p >
< p >
This is another paragraph
< / p >
```
#### More Information:
<!-- Please add any articles you think might be helpful to read before writing the article -->
2018-11-24 02:19:15 +01:00
- [MDN ](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/p )