This page shows the paragraphs in HTML. Paragraphs are present in the body section. They are used to make the elements in the blocks, separating content from one section to another.
Sample code is given below
<!DOCTYPE html>
<html>
<head>
<meta charset = "UTF-8" />
<meta name="viewport"
content="width=device-width,initial-scale=1.0"/>
<meta http-equiv="X-UA-Compatible" content="ie=edge"/>
<title>Paragraphs</title>
</head>
<body>
<h3>Many Paragraphs</h3>
<p>HTML ignores white spaces.</p>
<p>
Lorem Ipsum is simply dummy
text of the printing and
typesetting industry. Lorem
Ipsum has been the industry's
standard dummy text ever since
the 1500s, when an unknown
printer took a galley of type
and scrambled it to make a type
specimen book. It has survived
not only five centuries, but
also the leap into electronic
typesetting, remaining
essentially unchanged. It was
popularised in the 1960s with t
he release of Letraset sheets
containing Lorem Ipsum passages,
and more recently with desktop
publishing software like Aldus
PageMaker including versions of
Lorem Ipsum.
</p>
</body>
</html>
