HTML Font/Text Colors And Types
Lets take a look at some of the fonts/text types available, then we will demonstrate the colors:
1. Font/Text Types
a) Bold: You can blod a word or any statements you want by using the tag <b> and the closing tag is </b>.
b) Underline: You can underline any word you want by using the tag <u> Closing tag is </u>.
c) Italics: You can Italics any word you want by using the tag <i> Closing tag is </i>.
d) Font Face: You can change the font face by using the font face tag like so <font face="Arial"> and closing it with the tag </font>.
e) Font Size: You can change the font size by using the font size tag like so <font size="3"> and closing it with the tag </font>.
f) Creating A New Paragraph: You can create a new paragraph and automatically insert a blank line tag like so <p> and closing it with the tag </p>.
g) Creating A Line Break: You can create a line break between your text simply by using the tag <br>.
2. Changing Text Colors
You can change the color of any text you write simply by using the code:
<font color="red">
ofcourse dont forget to close by using:
</font>