HTML Paragraphs

Create HTML Paragraphs

HTML documents are divided into paragraphs. HTML paragraphs are defined by the <p> tag. The p element represents a paragraph. Browsers put a line break and space after a </p> tag.


<!DOCTYPE HTML>
<html> 
<body> 
    <p>This is a paragraph.</p> 
    <p>This is a paragraph.</p> 
    <p>This is a paragraph.</p> 
</body> <!--from w  w  w. jav  a2  s  .com-->
</html> 

Click to view the demo

The code above generates the following result.

HTML Paragraphs