How to center html text in the center of page?

  • Thread starter Thread starter Tommy V
  • Start date Start date
T

Tommy V

Guest
I am looking for the code to have a body of text centered completely in the middle of a page, without using page breaks. quickest and best answer will gat a "best answer".

Thanks
Your telling me things i already know! Im not asking how to center text, Im asking how to get the block of text in the middle of the page.
 
Two ways:

<p align=center> TEXT HERE </p>

or

<center> TEXT HERE </center>

The advantage of the second method is that you can use page breaks with in it.
 
Back
Top