Just a suggestion: Use header tags for headers and paragraph tags for regular paragraphs.
<h2>Line One</h2>
<p>paragraph one through one-billion</p>
Then you can style the header however you wish:
h2 {margin:0; text-indent:0; text-align:center; font-weight:bold}
p {margin:0}
|