Can somebody give a good example when to use the p tag.
I know it's a paragraph
//Tony
If you are sufficient XML oriented then you should have <p></p> around
all your text blocks.
Arne
I mean if it's only static text I don't need any p tag
//Tony
You really should use it all the time.
Not the 1995 style:
This is paragraph 1.
<p>
This is paragraph 2.
but XML style:
<p>This is paragraph 1.</p>
<p>This is paragraph 2.</p>
Arne
Then your page will not validate - http://validator.w3.org/
If your page does not validate then it might cause problems or not render as
you'd expect in some browsers, and bots might have problems. So, like Arne
has already posted, you should use them (correctly) all the time.
--
Brian Cryer
http://www.cryer.co.uk/brian