Back To the Last Page

This is what you should have so far:

<html>
<head>
<title>Cat's Page</title>
</head>
<body>
<center><b><u>Catherine's Page</b></u></center><br>
<br><br>
Hello, I am Catherine, I am Great.<br>
Welcome to my webpage.
</body>
</html>



Step 11:The Font Tag

It's looking a bit plain, even with the bold and underline. It would look better if the title was bigger. So, here is how you do it:

<font size=X></font>

Where X is equal to one of the following:

-2
-1
Default
+1
+2
+3
+4

So, If you wanted Large Text, then you'd use: <font size=+4></font>

Note: For the default size, you do not have to put anything at all, just close the </font> tag to return it to normal.

Anyways, lets give it a larger title, size +4 should be good:

<body>
<center><font size=+4>
<b><u>Catherine's Page</b></u>
</font></center><br>
<br><br>
Hello, I am Catherine, I am Great.<br>
Welcome to my webpage.
</body>
Step 11.2

The Font tag can do more than just size. It handles colour, font type and a bunch of other stuff which really isn't all that important. Lets go over the colour and type.

<font color ="X">>

Where X is a colour (yes, it has to be spelled color)
<font color="red">
<font color="orange">
<font color="yellow">
<font color="green">
<font color="cyan">
<font color="blue">
<font color="indigo">
<font color="magenta">
<font color="maroon">
<font color="black">
<font color="gray">

All the basic colours are there (including white). There is a more complicated way, but I'll tell you how to do that later, since it really isn't necessary.

If you want to change the font from the standard 'Times New Roman', this is how:

<font face="X"></font>

Where X is the name of a font, such as arial or courier.



So, lets add some colour and change the font:

<body>
<font face="arial">
<center><font size=+4><font color="maroon">
<b><u>Catherine's Page</b></u>
</font></font></center>
<br><br><br>
Hello, I am Catherine, I am Great.<br>
Welcome to my webpage.
</font>
</body>


That should look, something like this:


Catherine's Page




Hello, I am Catherine, I am Great.
Welcome to my webpage.




Go To Next Page