KISS HTML
You CAN write HTML code from scratch

Arranging elements - Centering the type on the page or <CENTER> tag


For a more balanced web page, you can center the text, which in this case may be more pleasing to the eye. To do this, you use the Center or <CENTER> tag.
Everything between the CENTER tags will be centered on the web page.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 //EN">
<HTML>

<HEAD>
<TITLE>Cyberperson's First Web Page</TITLE>
</HEAD>

<BODY>
<CENTER>
<FONT SIZE="6">
This web page belongs to Cyberperson. <BR>
</FONT>
<P>
<FONT SIZE="5">
I live in Los Angeles. </P> <BR>
<P>
I work for Calliope Studios. </P> <BR>
<P>
I have a dog named Remington. </P> <BR>
<P>
My hobbies are cooking and movies. </P> <BR>
</FONT>
</CENTER>
</BODY>

</HTML>

To see how this "Center" tag makes the web page look, click Here

  <- Previous | Next ->