|
Font Size Commands
Maybe you'd like a little more control over your text size. Well, here it is. The <FONT SIZE> commands. Heading commands are great for right at the top of the page, but these font commands are going to end up as the workhorses of your pages.
There are twelve (12) font size commands available to you: +6 through +1 and -1 through -6. As you've probably guessed, +6 is the largest (it's huge); -6 is the smallest (it's a little too small). Here are a few of them in action. There's no need to show all of them. You'll get the idea of their relative sizes. Follow this pattern to place one on your page.
<FONT SIZE="+1">This is +1</FONT>
<FONT SIZE="-1">This is -1</FONT>
<FONT SIZE="-6">This is -6</FONT>
Notice that this first command, <FONT SIZE="--"> is actually doing two things: 1. - It's asking for a new font size, 2. - then offering a number to denote the font size. This is what I like to call a command inside of a command. The technical HTML term is an "attribute". When you have that, you denote the attribute with an equal sign and enclose it within quotation marks. Look above. See the equal sign and the plus or minus number in quotes? That's what I'm talking about.
Also notice that the end command for a <FONT SIZE="--"> Tag only requires </FONT>. I should tell you now that there are two other attributes you can use inside the FONT Tag: COLOR and FACE (these both have tutorials unto themselves). But even if you use all three inside a FONT Tag, you still only need one </FONT>.
<FONT SIZE="--" COLOR="--" FACE="--">FONT SAMPLE</FONT>
Remember that an attribute is inside of a Tag. When you use an end command, you are closing the Tag, not the attribute. So you only need the one end Tag, like above.
|