Another way of specifying sizes and styles for text is through the font
command. Enclosing the word
font between <> allows you to change the
face (or style), size and color of the words you type, including headlines and body type. If you use
this tag for headlines, I'd recommend adding a <b> tag to bold it (and a
</b> tag to stop the bolding). You'll also need to open and close lines of type with <p>
and </p> commands, to skip a
line after the one you've just typed and start a new graph.
Example: <p><b><font size="4" color="#000000"
face="arial">Head Goes Here</font></b></p>
Notice I closed out my font and bold and paragraph tags in the reverse order that I typed them, for a
nesting effect.
Font sizes range from 1-7, with 3 being the default size, which
is usually equivalent to 12 points on a PC. A font size of 1=8 points, 2=10 points, 3=12
points, 4=14 points, 5=18 points, 6=24 points and 7=36 points.
Font faces, or styles, are serif (with feet) or sans serif (without feet). Most
Web designers recommend using different font styles for headlines and body text.
Often headlines are presented in a sans serif face, such as Arial or Verdana or
Tahoma, while body
text is often typed in a serif style, such as Times Roman or Times New Roman or Century or
Garamond.
To change font colors, there are 16 predetermined colors for which you can simply type the
word. Green, gray, silver, green, navy, purple, red, blue, black and white are among them.
But it's probably wiser to use hexadecimal codes inside quotation marks and preceded by a #
symbol to make the color of your
choice. The numerals in these codes correspond to specific shades of color.
So it's more likely to conform to the shade you selected when users look at it
from different platforms--on PCs, Macs, etc.
Ex: <p><font face="arial" size="4"
color="#404040"><b>This changes the font face to Arial, the size
to 14 point and the color to grayish black.</b></font></p>
The B tag
bolds the line.
Check out Webmonkey's color chart at
http://www.webmonkey.com/webmonkey/reference/color_codes/
for
hexadecimal codes for other shades. And read Lynda Weinman's explanation of why some designers still only work with 216 "Web-safe colors."
Sometimes Web designers include more than one font face in a string of code, separating each
face with a comma.
(As in: <font face="arial, courier"> This way, if a
user doesn’t have the first font installed on his or her computer, the browser
will automatically display the type using the second face.
Remember that your computer will default to Times
New Roman if you don't specify an
alternative font face, or style.
Let's use this information to type subheads for your name, which you already
typed twice. Code the first name in a font size of 5, with an Arial face, and
black type. (The computer will automatically make the text black, unless
otherwise specified.)
Code the second name in a font size of 7, with
a Times Roman face, and blue type.
Now save what you've typed (File/Save) and minimize the Notepad file by clicking
on the minus symbol at the top right of your screen. To look at what you've
done, double-click on the My Computer icon on your computer, double-click on the
C or A or H drive to open this file, and double click on the file with your last name on it. It should open in a Web
browser. Notice the difference in the way your name
displays on the two lines. Now minimize this page, by clicking on the minus
symbol at the top right of the browser. Double-click on the Notepad file saved
on your tool bar and delete one of the names you typed. The one typed to the
size you liked best
should remain.
Not let's use the font tags to type resume categories, starting with
the mini title of Work Experience:
Work Experience
Surround the words with html tags to create a paragraph break between
this phrase and your name. Let's also give it an Arial face and make it 14 points
tall, which translates to a size of 4:
<p><font size="4"
face="arial">Work Experience</font></p>
A <b> tag or a <strong> tag will boldface text. Go back into your education line and make it
bold.
<p><font size="4"
face="arial"><b>Work Experience</b></font></p>
Notice that we didn't include an align="left" command in our <p>
tag. The computer will automatically align your type left, unless you give it a
different alignment command, such as center. We also failed to put in a color
command. The computer will automatically make the text black, unless
otherwise specified.
Below that Work Experience line, type in a
sentence or phrase about your current job. I’d recommend using an Italics tag
<i> or <em> when naming the newspaper or broadcast outlet you work for. Or
you could boldface it. To activate either command, you’ll need to surround
it with the less-than, greater-than symbols, as in <b> or <i>; you'll also need to close the tags
with a </b> or </i> after the last word
you want bolded or italicized.
So type:
<p><i>University of
Maryland Philip Merrill College of Journalism</i>, July 1998 to present: Full-time
faculty member.</p>
If you have more to add here, type it now. If you have a second paragraph, remember to start and finish
this paragraph with <p> and </p> tags.
If, however, you simply wanted to drop your type to the next line, without any space between your lines of text, you'd type
br, enclosing it in
<>. Example: <br>.
This is a line break, rather than a paragraph break A <br> tag is
one of the few commands that doesn't need a closing tag.
Use the font commands to create other sections of your resume, such as
Education, Awards; Special Skills.
Try changing the colors of some of these subheads, using the color="#xxxxxx"
command inside the font tag. But before you do this,
let’s again save your work in Notepad, so we don't lose it.
Remember to keep your file name
lowercased and to use your last name and a .html extension. And let's minimize
our Notepad file, double-click on the minimized browser on the tool bar,
refresh that page and view our latest work.