2c. Formatting Text

Formatting text is really easy, now that you know about tags. If you want something to be bold, just put it inside <b> </b> tags! And so on. Check it out:

bold <b> </b>
italic <i> </i>
underline <u> </u>
centered
<center> </center>

There are several commands that don't need closing tags, because they're just one-time instances. These include things like the break and horizontal rule (line) tags.

HTML ignores whitespace in your document, so if you want a new line, you have to tell it to put in a break. Do this with a <br> tag.

If you want to separate space in your document, you can draw a straight line across it. Do this with a <hr> tag.


<-- back   ||   next -->
tutorial