Sunday, August 28, 2011

Example of Definition-Lists in HTML

 Example of Definition-Lists in HTML
<html>

<head>
  <title>Definition Lists</title>
</head>

<body bgcolor="#FFFFFF">

  <dl>

    <dt>One</dt>
      <dd>The first non-zero number.</dd>

    <dt>Two</dt>
      <dd>The number after one.</dd>

    <dt>Three</dt>
      <dd>To get ready.</dd>

    <dt>Four</dt>
      <dd>Now Go, manu, Go!</dd>

  </dl>

</body>
</html>
OUTPUT-
Definition Lists
One
The first non-zero number.
Two
The number after one.
Three
To get ready.
Four
Now Go, manu, Go!

No comments:

Post a Comment