MORE FONT ATTRIBUTES | Go back to the Main Menu  |
Remember the following:
First, a TAG tells the browser to do something. An ATTRIBUTE goes inside the TAG and tells the browser how to do it.
Second point is about defaults. As you probably know, the default value is a value that the browser assumes if you have not told it otherwise. A good example is the font size. The default font size is 3. If you say nothing, it will be 3. If you make faces at your computer, it will still be 3.
every browser has a default font setting- font name, size and color. Unless you have messed with it, the default for Netscape is
Times New Roman 12pt(which translates into 3 for our purposes) and it's black.
The Code for this page is as follows:
<HTML>
<HEAD>
<TITLE>Exercise 4 in HTML</TITLE>
</HEAD>
<BODY BGCOLOR="#ffffff">
<U><I><B><FONT COLOR="#ff0000" FACE="ARIAL" SIZE="7">Remember the following:</FONT></B></I></U>
<P>First, a TAG tells the browser to do something. An ATTRIBUTE goes inside
the TAG and tells the browser how to do it.
<P>Second point is about defaults. As you probably know, the default value is
a value that the browser assumes if you have not told it otherwise. A good
example is the font size. The default font size is 3. If you say nothing, it
will be 3. If you make faces at your computer, it will still be 3.
<P>every browser has a default font setting- font name, size and color. Unless you have messed with it, the default for Netscape is
  <P ALIGN=CENTER><B>Times New Roman 12pt(which translates into 3 for our
purposes) and it's black.</B>&l;/P>
</BODY>
</HTML>
Go back to the Top | Go back to the Main Menu  |