NOTE: HTML syntax is simply this: for each opening tag there is a matching closing tag that begins with </
The most commonly used properties for the font tag are as follows:
face="verdana,courier" <--- separate secondary fonts by commas and use quotes
size=2 <--- this is a preset size by browsers. Use a style sheet for pixels.
color=blue <--- standard colors and use pound sign with hex
Some other useful font tags:
<h1 align=left>Hello</h1> <--- can be 1 through 6 - makes bold headings - 1 is biggest - align can equal left, right, or center
<big>Hello</big>
<small>Hello</small>
<b><font face=verdana>Hello</font></b> <--- for bold text
A simple style sheet:
<style type=text/css>
font {
font-family: verdana, 'trebuchet ms';
font-size: 14px;
color:#333333;
font-weight:bold;
text-decoration:none;
}
</style>
Then just use font without properties since they are all defined in the style sheet, like so: