Horje
HTML Paragraphs

The HTML <p> element defines a paragraph.

A paragraph always starts on a new line, and browsers automatically add some white space (a margin) before and after a paragraph.


Sample of HTML Paragraphs

<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>

Full Example of HTML Paragraphs

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>

</body>
</html>

Output should be:

Full Example of HTML Paragraphs





Category:
Web Tutorial
Sub Category:
HTML Paragraphs
Uploaded by:
Admin


Read Article
https://horje.com/learn/1434/reference