Horje
HTML Paragraphs

HTML paragraphs are defined with the <p> tag.


Example of HTML Paragraphs

Followings are sample of HTML Paragraphs

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

Use of HTML Paragraphs

Between <body> and </body> you should use HTML Paragraphs

index.html
Example: HTML
<body>
<p>
This is a paragraph.</p>
<p>
This is another paragraph.</p>
</body>

Example HTML Paragraphs

Here is full example of HTML Paragraphs. You can try them yourself.

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>
<p>
This is a paragraph.</p>
<p>
This is another paragraph.</p>
</body>
</html>

Output should be:

Example HTML Paragraphs





Related Articles
HTML Documents HTML Basic
HTML <!DOCTYPE> Declaration HTML Basic
HTML Headings HTML Basic
HTML Paragraphs HTML Basic
HTML Text Links HTML Basic
HTML Images HTML Basic
How to View HTML Source HTML Basic

Single Articles
Example of HTML Paragraphs HTML Basic
Use of HTML Paragraphs HTML Basic
Example HTML Paragraphs HTML Basic

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


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