tag < p > :
Definition and Usage
The <p> tag defines a paragraph.
Browsers automatically add some space (margin) before and after each <p> element. The margins can be modified with CSS (with the margin properties).
| code | output |
|
> p < This is a sample paragraph
< /p > |
This is a sample paragraph |
| example | |
|
< html > < head > < title > The title of the page < /title > < /head > < body > ... The content of the page ... < /body > < /html > |
|