View Full Version : Center-ing


laurioli34
06-16-2004, 03:18 AM
Well, I took an HTML course, and then proceeded to forget everything I was taught. No fun when I need to do a few things in HTML. Can anyone remind me how to center a paragraph of writing? Help is greatly appreciated!

skyjuice
06-16-2004, 03:26 AM
<palign="center">
Whatever you want centered
</p>

But take note that when you do this, you can't use <p></p> for making new paragraphs

laurioli34
06-16-2004, 03:27 AM
Okie! Thank you very muchly!

skyjuice
06-16-2004, 03:36 AM
no problem, glad to be able to help!

bigolblob
06-16-2004, 04:07 AM
<palign="center">
Whatever you want centered
</p>

But take note that when you do this, you can't use <p></p> for making new paragraphs

Actually, you forgot to put a space between "p" and "align", so if that doesn't work, it's cause you need to put in the space :P like this:

<p align="center">
..^
</p>