| Introduction The Basics The basic tools A Page Template Formatting text Making a list Using colors and backgrounds Glossary |
![]() |
It's easy to change the
appearance of your text, and since text is usually the largest part of the
content of a web site, these variations can lend emphasis and attractiveness
to your pages. Text can be modified in three primary ways:
When you use the headline tags, your browser will add 'white space' around the text as well, so if you just want to make one word or a phrase larger, use the <font> tag instead. The FONT tag has several attributes, but for now we'll look just as the one for size. The default size for text is 3. This is the size your browser will display if no other size attribute is assigned. The body text on this page is size 3. <font size=2>This text is size 2</font> This text is size 2 <font size=4>This text is size 4</font> This text is size 4 <font size=5>This text is size 5</font> This text is size 5 <font size=1>This is tiny text, size 1</font> This is tiny text, size 1. Notice that each block of differently sized text has an opening font tag, which specifies the size, and a closing font tag, which is just </font>. |