|
Font Tags
The following example shows using various HTML Font related Tags.
06 | < b >Bold (< b >)</ b > < br > |
07 | < strong >Strong (< strong >)</ strong >< br > |
08 | < i >Italic (< i >)</ i > < br >< br > |
10 | < strike >Strike (< strike >)</ strike > < br > |
11 | < u >Underline (< u >)</ u > < br >< br > |
13 | < big >big (< big >)</ big > < br > |
14 | < small >small (< small >)</ small > < br >< br > |
16 | ABCD< sub >subscript</ sub >EFG < br >< br > |
17 | ABCD< sup >superscript</ sup >EFG |
20 | < font size = "3" color = "red" >Font in red</ font >< br > |
21 | < font size = "5" face = "verdana" color = "blue" >Font in blue</ font > |
|
It gives the following output,
Font Tags
Bold (<b>)
Strong (<strong>)
Italic (<i>)
Strike (<strike>)
Underline (<u>)
big (<big>)
small (<small>)
ABCDsubscriptEFG
ABCDsuperscriptEFG
Font in red
Font in blue
|
|
|