0% found this document useful (0 votes)
6 views2 pages

HTML Definition List Tags Explained

The document defines various HTML style tags for formatting text, creating lists, and more. Key tags include <B> for bold text, <I> for italics, <U> for underlines, <BIG> and <SMALL> for font sizes, <OL> and <UL> for ordered and unordered lists, <LI> for list items, <DL> for definition lists with <DT> for terms and <DD> for descriptions, and <MENU> and <DIR> for creating menus and directories. Examples of each tag are provided.

Uploaded by

Shamshad Ali
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLS, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views2 pages

HTML Definition List Tags Explained

The document defines various HTML style tags for formatting text, creating lists, and more. Key tags include <B> for bold text, <I> for italics, <U> for underlines, <BIG> and <SMALL> for font sizes, <OL> and <UL> for ordered and unordered lists, <LI> for list items, <DL> for definition lists with <DT> for terms and <DD> for descriptions, and <MENU> and <DIR> for creating menus and directories. Examples of each tag are provided.

Uploaded by

Shamshad Ali
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLS, PDF, TXT or read online on Scribd

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>

You might also like