HTM25


BACK

DESCRIPTION

OUTPUT

SOURCE CODE






DESCRIPTION:

     The <DT> and <DD> tag define the term and definition respectively. These tags are used inside the <DL> tag as <br> many times as there are list items.      The <DT> tag (definition term) indicated the term that is to be defined. It is valid only within a <DL> container. Although the <DT> is considered a container, it is always used as an empty tag. The <DD> tag the immediately follows the end of the <DT> tag serves to alert the browser to close the <DT> container


..Back to the top..



OUTPUT:


HTM25. A Web page with definition lists

BOOKS

OFFICE PRODUCTIVITY
contains MS Word, MS Excel, MS Publisher, and MS Outlook
CREATIVE DESIGN
contains Adobe Photoshop, Adobe Illustrator, Adobe InDesign, and Adobe Acrobat
WEB DESIGN
contains HTML, XHTML, CSS, JavaScript, and Dreamweaver


..Back to the top..



SOURCE CODE:



<HTML>
<HEAD><TITLE>HTM25. A Web page with definition lists</TITLE></HEAD>
<BODY>
<H2><B><CENTER><FONT COLOR = blue>BOOKS</FONT></CENTER></B></H2>
<DL>
<DT>OFFICE PRODUCTIVITY
<DD>contains MS Word, MS Excel, MS Publisher, and MS Outlook
<DT>CREATIVE DESIGN
<DD>contains Adobe Photoshop, Adobe Illustrator, Adobe InDesign, and Adobe Acrobat
<DT>WEB DESIGN
<DD>contains HTML, XHTML, CSS, JavaScript, and Dreamweaver
</DL>
</BODY>
</HTML>


..Back to the top..