Lesson 2: Font Tags
(Font Typeface)

You can set the typeface with the "<font>" tag and the "face" attribute. You can place multiple font names in the "face" attribute and your browser will examine the names and display the first supported font listed. If no match is found, the browser's default font will display.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Welcome to HTML</title>
</head>

<body bgcolor="#bdbdbd" text="black">
<center>
<b>
<font face="helvetica,arial">
Welcome to the world of HTML!
</font>
<br />
<font face="courier">
Your passport to Internet creativity!
</font>
<br />
</b>
</center>
</body>
</html>