Horje
How to create HTML Paragraphs

HTML paragraphs are defined with the <p> tag:


How is to look HTML Paragraphs?

Followings are sample of HTML Paragraphs
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>

How to use HTML Paragraphs?

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

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

</body>

Full Example of 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:

Full Example of HTML Paragraphs





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

Single Articles
How is to look HTML Paragraphs?HTML Basic
How to use HTML Paragraphs?HTML Basic
Full Example of HTML ParagraphsHTML Basic

Read Full:
HTML Basic
Category:
Web Tutorial
Sub Category:
HTML Basic
Uploaded by:
Admin
Views:
233


Reffered: https://www.w3schools.com/html/tryit.asp?filename=tryhtml_basic_paragraphs