Basics

HTML

Java

Colors

Frames

Tables

Fonts

Graphics

Links

Contact

how do i put text on my page?

 

To add text, you need to set up a paragraph with paragraph tags. The text will automatically be aligned to the left:

<p>You put your text here</p>



To center your text you do this:

<p align=center>This will center your text</p>



To align your text on the right you do this:

<p align=right>This will align your text to the right</p>


To make your text bold you do this:
<p><b>This will make your text bold</b></p>


To italicize your text you do this:
<p><i>This will italicize your text</i></p>


To underline your text you do this:
<p><u>This will underline your text</u></p>


If you want to go to the next line (to type in any text) you need to add this tag: <br>. You can use this tag to make vertical spaces between images, and it works just like the enter key on your keyboard.