Making more changes to the appearance of our text

Lesson 4

Now that we have one red sentence and one blue sentence, lets make the red sentence bigger.

the default size for text on a web page is 3, so if the desired size is 3, (that is the size that you see on this page) there is no need for a size statement. But what if you want your sentence to be this big.

Now I have changed the size from 3 to 5. Now I need to tell my code that I would like my sentence to be displayed this way. To do this I need to add another statement to my font tag. The statement will me size=5.

Now my font tag looks like this <font color=#FF0000 size=5>

Lets change it even more. Lets use a different font face.  The default face is Times New Roman. If you would like your text to be Times New Roman, there is no need to add any additional statements but, lets say you want to change it to.....Ummmmmm

This one...this one is nice, don't you think?

This one is called Arial.

I will need to tell my code that I would like my font face to be Arial. To do this I will need to add a face statement to my font tag. The statement will be face=Arial.

My font tag will now look like this

<font color=#FF0000 size=5 face=Arial>

If you now have one sentence that is big, red and Arial and a second sentence that is small, blue and Times New Roman........

DANCE!