Publishing any kind of written works requires the use of a paragraph. The paragraph tag is very basic and a great introductory tag for beginner's because of its simplicity.
The <p> tag defines a paragraph. Using this tag places a blank line above and below the text of the paragraph. These automated blank lines are examples of how a tag "marks" a paragraph and the web browser automatically understands how to display the paragraph text because of the paragraph tag.
HTML Code:
<p>this is the 1 paragraph,
it will continue until the end
tag </p>
<p>this is the 2 paragraph,
it will continue until the end
tag </p>
If you don't want blank lines then you can give
Inside head tag.
<style type="text/css">
p{ padding:0px; margin:0px;}
</style>
May 18, 2010