tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 HTML > Basic > Font Tags

Font Tags 

The following example shows using various HTML Font related Tags.

File Name  :  
source/HTML/basic_tags/tag_font_style.html 
01<html>
02<body>
03     
04    <h2>Font Tags</h2>
05 
06    <b>Bold (<b>)</b> <br>
07    <strong>Strong (<strong>)</strong><br>
08    <i>Italic (<i>)</i> <br><br>
09 
10    <strike>Strike (<strike>)</strike> <br>
11    <u>Underline (<u>)</u> <br><br>
12 
13    <big>big (<big>)</big> <br>
14    <small>small (<small>)</small> <br><br>
15 
16    ABCD<sub>subscript</sub>EFG    <br><br>
17    ABCD<sup>superscript</sup>EFG
18     
19    <br><br>
20    <font size="3" color="red">Font in red</font><br>
21    <font size="5" face="verdana" color="blue">Font in blue</font>
22     
23</body>
24</html>

It gives the following output,
File Name  :  
source/HTML/basic_tags/tag_font_style.html 

Font Tags

Bold (<b>)
Strong (<strong>)
Italic (<i>)

Strike (<strike>)
Underline (<u>)

big (<big>)
small (<small>)

ABCDsubscriptEFG

ABCDsuperscriptEFG

Font in red
Font in blue



 
  


  
bl  br