STYLE TAGS
<B> To make the text Bold
<I> To make the text Italic
<U> To make the text Underlined
<S> or
<STRIKE> A line drawn in the middle of the text
<BIG> To make the text to larger font
<SMALL> To make the text to smaller font
<TT> To make the text like a typewriter font
It defines a list item and used in both ordered (<ol>) and
<LI> unordered (<ul>) lists
number
Specifies the value of a list item. The following list items will
Value increment from that number (only for <ol> lists)
disc,square,
<UL> Type circle The <ul> tag defines an unordered list
<OL> Type 1,A,a,I The <ol> tag defines an ordered list
<DL> The <dl> tag defines a definition list.
<DT> Defination Term, defines the item in the list
<DD> Defination Description
<MENU> It is useful while creating list of hypertext links
<DIR> It is useful while listing computer file directories
<B> text </B>
<I> Text </I>
<U> Text </U>
<S> Text </S>
<BIG> Text </BIG>
<Small> Text </Small>
<TT> Text </TT>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<dl>
<dt>Coffee</dt>
<dd>- black hot drink</dd>
<dt>Milk</dt>
<dd>- white cold drink</dd>
</dl>
<MENU>
<LI> House Salad
<LI> Liver and Onions
<LI> Fresh Soup
</MENU>
<DIR>
<LI> [Link]
<LI> [Link]
<LI> System folder
</DIR>