HTML/CSS/Text/dl

Материал из Web эксперт
Перейти к: навигация, поиск

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">
<dl>
  <dt>CSS</dt>
  <dd>A simple mechanism for adding style (e.g. fonts, colors, spacing) to Web documents.</dd>
  <dt>XHTML</dt>
  <dd>A family of current and future document types and modules that reproduce, subset, and extend HTML, reformulated in XML.</dd>
  <dt>XML</dt>
  <dd>A simple, very flexible text format derived from SGML.</dd>
</dl>
</div>

</body>
</html>



Definition list

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.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" />
  <title>Definition list</title>
</head>
<body>
  <dl>
    <dt>Pizza</dt>
    <dd>
      <p>text.</p>
      <p>Also called <em>pizza pie</em>.</p>
    </dd>
    <dt>Pasta</dt>
    <dd>This is a test. This is a test. </dd>
    <dd>A prepared dish containing pasta as its main ingredient.</dd>
  </dl>
</body>
</html>