Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

paragraph tag [html]

Status
Not open for further replies.

satellite03

IS-IT--Management
Dec 26, 2003
248
IN
<html>
<p> hello world
</html>

AND

<html>
hello world
</html>

both of them produce same output....so what is the importance of <p> tag? how does it differ?
 
correct syntax would be

Code:
<html>
[b]<head></head>
<body>[/b]
<p> hello world[b]</p>
</body>[/b]
</html>

The <p> is a paragraph tag and in it's default setting will add white space above and below the enclosed text and will indent the first line of text

the main purpose is to provide document structure


Chris.

Indifference will be the downfall of mankind, but who cares?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top