Use UL and LI to create definition layout : dfn « Tags « HTML / CSS






Use UL and LI to create definition layout

  

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <style type="text/css" media="screen">

  
  </style>
</head>

<body>


<div id="divID">
  <ul>
    <li>CSS<br />
    A simple mechanism for adding style (e.g. fonts, colors, spacing) to Web documents.</li>
    <li>XHTML<br />
    A family of current and future document types and modules that reproduce, subset, and extend HTML, reformulated in XML.</li>
    <li>XML<br />
    A simple, very flexible text format derived from SGML.</li>
  </ul>
</div>



</body>
</html>

   
  








Related examples in the same category

1.Definition
2.'dfn' Example