The P Tag
To separate your text into paragraphs use the <P> tag. For example, the following
HTML source code:
This is should be the end of my first paragraph in HTML.
This should be the start of my second paragraph in HTML.<P>
And this is should be my third paragraph in HTML.<P>
Would display this on the user's screen:
This is should be the end of my first paragraph in HTML.
This should be the start of my second paragraph in HTML.
And this is should be my third paragraph in HTML.
Normally all text in an HTML document is treated like one long paragraph. Indented or
blank lines which normally indicate start of paragraphs in text are ignored. The
<P> tag is used to separate paragraphs of text within an HTML document. The
<P> tag forces an end of line and forces a blank line before the next paragraph.
The <P> tag is only required to separate paragraphs in a document. It is not
required after other tags which imply a line break.
I do not want to have a blank line in my text. What do I do?