Html #part2:
<h1 style="color:blue">This is a heading</h1>
<h1 style="font-family:verdana">This is a heading</h1>
<h1 style="font-size:200%">This is a heading</h1>
<h1 style="text-align:center">Centered Heading</h1>
<h1 style="text-align:left">Left Heading</h1
><h1 style="text-align:right">Right Heading</h1>
<p>This is <sub>subscripted</sub> text.</p>
HTML Text Color
The color property defines the text color to be used for an HTML element:<h1 style="color:blue">This is a heading</h1>
HTML Fonts
The font-family property defines the font to be used for an HTML element:<h1 style="font-family:verdana">This is a heading</h1>
HTML Text Size
The font-size property defines the text size to be used for an HTML element:<h1 style="font-size:200%">This is a heading</h1>
HTML Text Alignment
The text-align property defines the horizontal text alignment for an HTML element:<h1 style="text-align:center">Centered Heading</h1>
<h1 style="text-align:left">Left Heading</h1
><h1 style="text-align:right">Right Heading</h1>
HTML Formatting :
Subscript
The HTML <sub> element defines subscripted text.<p>This is <sub>subscripted</sub> text.</p>
Superscript:
<p>This is <sup>superscripted</sup> text.</p>
HTML <q> for Short Quotations
The HTML <q> element defines a short quotation.
<p>WWW.: <q>Tihs is text from www.blackfacers.blogspot.com.</q></p>
HTML <abbr> for Abbreviations
The HTML <abbr> element defines an abbreviation or an acronym.
<p>The <abbr title="End Of File">EOF</abbr></p>
HTML Comment Tags
<!-- Write your comments here -->