Use p element to mark Paragraphs
Description
The p
element represents a paragraph.
Paragraphs are blocks of text containing one or more related sentences.
Example
The following code shows how to use the p
element to the example content.
<!DOCTYPE HTML>
<html>
<body>
<p>
I code in CSS.<!--from w ww .j a va2s .c o m-->
</p>
<p>
HTML is good.
</p>
<p>
This is the third paragraph.
</p>
</body>
</html>