Tecpins

You are welcome to Tecpins, it is free tutorials for people who want to learn about Html Tutorial,Android Tutorials,PHP Tutorials,Java Tutorials and Css Tutorials.

Post Top Ad

ads
Responsive Ads Here

HTML Paragraph Tag

Paragraph Tag

The <p> tag offers a way to structure your text into different paragraphs. Each paragraph of text should go in between an opening <p> and a closing </p> tag as shown below in the example:

Example

<!DOCTYPE html>
<html>
<head>
<title>Paragraph Example</title>
</head>
<body>
<p>First paragraph of text.</p>
<p>Second paragraph of text.</p>
<p>Third paragraph of text.</p>
</body>
</html>

Result:

First paragraph of text.
Second paragraph of text.
Third paragraph of text.