HTML Paragraph

HTML paragraph or HTML p tag is used to define a paragraph in a webpage. Let's take a simple example to see how it work. It is a notable point that a browser itself add an empty line before and after a paragraph. An HTML

tag indicates starting of new paragraph.

Note: If we are using various

tags in one HTML file then browser automatically adds a single blank line between the two paragraphs.

See this example:

Test it Now

Output:

This is first paragraph.

This is second paragraph.

This is third paragraph.


Space inside HTML Paragraph

If you put a lot of spaces inside the HTML p tag, browser removes extra spaces and extra line while displaying the page. The browser counts number of spaces and lines as a single one.

Test it Now

Output:

I am going to provide you a tutorial on HTML and hope that it will be very beneficial for you.

Look, I put here a lot of spaces but I know, Browser will ignore it.

You cannot determine the display of HTML

because resized windows may create different result.

As you can see, all the extra lines and unnecessary spaces are removed by the browser.


How to Use
and
tag with paragraph?

An HTML
tag is used for line break and it can be used with paragraph elements. Following is the example to show how to use
with

element.

Example:

Test it Now

Output:

HTML Paragraph

An HTML


tag is used to apply a horizontal line between two statements or two paragraphs. Following is the example which is showing use of
tag with paragraph.

Example:

Test it Now

Output:

HTML Paragraph

Supporting Browsers

Element chrome browser Chrome ie browser IE firefox browser Firefox opera browser Opera safari browser Safari

Yes Yes Yes Yes Yes
Next TopicHTML Phrase Tag




Contact US

Email:[email protected]

HTML p Tag
10/30