Text
The main way to change text in html is to use the <font> tag. Using this tag you will be able to change the text's color, font, and size.
The <font> tag
Font color
To change the text's color you have to use the font tag. Like this...
<font color="#000000">text</font>
This is one way to change the color, by using the HEX Code. The HEX code is the 6-digit code that represents the red, green, and blue in a color.Another way...
<font color="blue">text</font>
This way uses the color name. However, the choices are much more limited.
Font size
You also use the font tag to change the size of your text. There are 7 different sizes for text, 1-7, with 7 being the largest and 1, the smallest.
<font size="4">text</font>
Font Face
Finally, you use the font tag to change the look of your font, similar to changing fonts in a Microsoft Word document.
<font face="Arial">text</font>
Headings
There are six different headings, going in order from 1-6. One is the biggest and six is the smallest.Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
Other Tags
The <br> Tag
This tag is used as a line break.The <b> Tag
This tag is used to make the surrounded text bold. Close the tag by using </b>.
<b>This text is bold</b>
The <i> Tag
This tag is used to italicize text. Close the tag using </i>.
<i>This text is italicized</i>
The <u> Tag
This tag is used to underline text. Close the tag using </u>.
<u>This text is underlined</u>
