|
Post by ~Joedagimp on Nov 22, 2008 15:48:06 GMT -5
Here you will learn how to: Underline Bold Italic Strikethrough Change font size Change font color Change font style
This basic guide goes through how to do all of them using HTML.
Underlines, Bolds, Italics, Strikethroughs These are probably the easiest thing to do in HTML Underline: <u> Text </u> Bold: <b> Text </b> Italic: <i> Text </i> Strikethroughs: <s> Text </s> See, how easy is that!
Font Size, Color and Styles to change the font size you use: <font size="1"> Text </font> Change the red to increase the size of the font. to change the color you use: <font color="COLOR"> Text </font> change the COLOR to either font names or a #Hex Decimal Color. to change the font style you use: <font face="FONT NAME"> Text </font> change the FONT NAME to a style of font. E.g if i wanted text in the gerogia style i would put <font face="georgia"> Text </font> This would look like this: Text
|
|