Create three Paragraphs in HTML and CSS

Description

The following code shows how to create three Paragraphs.

Example


<html>
<body>
<p>The purpose of a web browser is
to read HTML documents and compose them into visible
or audible web pages. The browser does not display
the HTML tags, but uses the tags to interpret the
content of the page. HTML describes the structure
of a website semantically along with cues for
presentation, making it a markup language rather
than a programming language. </p>
<p>Here is a second paragraph of text.</p>
<p> Web browsers can also refer to Cascading Style
Sheets (CSS) to define the look and layout of text
and other material. The W3C, maintainer of both
the HTML and the CSS standards, encourages the
use of CSS over explicit presentational HTML.</p>
</body><!--  www.  j a v  a 2s .  c  om-->
</html>

Click to view the demo

The code above generates the following result.

Create three Paragraphs in HTML and CSS
Home »
  HTML CSS Tutorial »
    Text »
      Paragraph
HTML CSS Tutorial Paragraph
Add line break to a paragraph in HTML and C...
Add margin to paragraph in HTML and CSS
Add shading border for paragraph in HTML an...
Create Paragraphs in HTML and CSS
Create three Paragraphs in HTML and CSS
Demonstrate White Space Collapsing and Line...
Float a paragraph right and make text above...
Float image to left and right, then start n...
Float paragraph in HTML and CSS
Set text align for paragraph to center in H...
Use different border style to highlight wor...
Use margin to align and move a paragraph in...