HTML Paragraphs


<p> use to divide the page into a paragraph; using this tag, we can alignment the paragraph on the page.
Example:

<p> Codefari example for paragraph</p>

Definition:
HTML paragraph tags are used to define the HTML paragraph element. The paragraph element begins with the HTML <p> tag and ends with the HTML </p> tag. It does not contain tables and other block elements. An example is shown below.
It is defined with the <p> tag:

<p>Capped collection is a fixed size collection that automatically overwrites its oldest entries when it reaches its maximum size. If you specify true, you need to specify size parameter also.</p>
We want to use the <p> tag when we need to break up two streams of information into separate thoughts.

<p> Once, a farmer had a goose which laid golden eggs. He sold those eggs for good money and became rich.</p>

<p>We can achieve big goals even with little things.</p>
We can apply style and css class on <p> tag. <p> tag always declared inside of <div> or <td>.
<div> or <td> can't be declared inside <p> tag.

Example how to apply css:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>codefari </title>
<style>
.para{
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
padding:10px;
}
</style>

</head>
<div>
<p class=".para"> this is the example of paragraph presented by codefari</p>
</div>
<body>
</body>
</html>

If you want to apply a single class to all paragraphs, see the following.


<style>
p{
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
padding:10px;
}
</style>

Related Posts

What is the Use of isNaN Function in JavaScript? A Comprehensive Explanation for Effective Input Validation

In the world of JavaScript, input validation is a critical aspect of ensuring that user-provided data is processed correctly. One indispensa...