Sunday, 24 June 2012

html Definition list basic


HTML Definition list basic

Definition List : If we want to represent title with each list item then we use definition list. This list is used dictionary way to represent data on webpages. we need following three tags for implementing on the web pages.
  • <dl></dl> This tag define definition list.
  • <dt></dt> This tag define title of each item.
  • <dd> </dd> This tag define data for each item
 Syntex
 <dl>
 <dt>c-language</dt>
 <dd>basic of c</dd>
 <dt>jquery</dt>
 <dd>basic of jquery</dd>
 <dt>html</dt>
 <dd>basic of html</dd>
 </dl>
 
Example
c-language
basic of c
jquery
basic of jquery
html
basic of html
Click to practice online example

No comments:

Post a Comment