1 2 3 4 5 6 7 8 9 10 11 12 13 14
Back to the Lessons Index

Guidelines for Manipulating Your Text

Tags to Change Font Appearance
<b> </B> Changes the Text between the tags to BOLD
<I></I>Changes the text between the tags to Italic .
<tt></tt>Changes the text between the tags to typewriter text (courier) .
<font face="courier" size="4"></font> Changes text between tags to Font face "courier", size about 12 point



HTML does not recognize margins or line breaks, so you must add them in.

To force a line break:

<BR> Forces one line break.
<P> Forces a paragraph break. (2 lines).



You can also center your text on the page:

<CENTER> </CENTER>

all text will be centered between the tags


You can string any tags together:
<B> <I> Some Text </I> </B> Will make the text bold and italic