Forum : Paragraph tag attributes
Brief description  about Online courses   join in Online courses
View Siddiqui Nadeem Ahmed 's Profile

Paragraph tag attributes

Hi i want more information about paragraph tags. I want In the paragraph, the first line is to be hanging indent so how we can generate
Asked by Siddiqui Nadeem Ahmed | May 18, 2010 |  Reply now
Replies (1)
View teacher siliconindia 's Profile
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