Aside from adding pictures, which we will get to later, the first thing most people want to know is how to change the font.
There are three things you can change in the font tag. Those three items (attributes) are:
So here is an example:
<font face="Brush Script MT" size="6" color="red">
This makes pretty large red text using the Brush Script font. To change back to the previous font put in a tag to end the font like this:
In fact, anytime you are done with changing a font, you must end the font otherwise some browsers will get confused.
</font>
This makes the font go back to the prior font.
If the font you have selected does not exist on the machine that is viewing your page, a substitute font (or the default font) will be displayed. Sometime the results are gross. Also, font size can also be controlled using + or - numbers. In other words, if you want the next size larger font it might look like this:
<font size=+1>
Open up your file called template.htm.
Save it as fonts.htm.
Add text on any subject you wish using 9 different combinations of face, size and color.
Save the file.
View it using the browser to ensure that it all works correctly.