Guide to Manipulating Text on a Web Page
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. |
How to Force a Line Break
HTML does not recognize margins or line breaks, so you must add them in.
| <br> | Forces one line break. |
| <p> | Forces a paragraph break (two lines). |
Center Your Text on the Page:
| <center> </center> | All text will be centered between the tags. |
How to String Tags Together
| <b> <i> some text </i> </b> | Will make the text bold and italic. |
