Example of HTML Definition List - HTML CSS HTML

HTML CSS examples for HTML:List

Description

Example of HTML Definition List

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <meta charset="UTF-8"> 
  <title>Example of HTML Definition List</title> 
 </head> <!--   w  w w .jav a2  s.c om-->
 <body> 
  <h1>HTML Definition List</h1> 
  <dl> 
   <dt>
    HTML
   </dt> 
   <dd>
    mark the text
   </dd> 
   <dt>
    CSS
   </dt> 
   <dd>
    add style, color
   </dd> 
  </dl>   
 </body>
</html>

Related Tutorials