Sunday, August 28, 2011

Example of Unordered- list in HTML

Example of  Unordered- list in HTML
<html>

<head>
  <title>Unordered Lists</title>
</head>

<body bgcolor="#FFFFFF">

  <ul type="DISC ">

    <li>One</li>

    <li>Two</li>
<ul> 
          <li>that is </li>
          <li>that's nice </li>
          <li>that's good </li>
</ul>
    <li>Three</li>

    <li>Four</li>

  </ul>

</body>
</html>
(NOTE- You can  also use many bullet type in list like "DISC "(this is default),circle & square.)
OUTPUT- Unordered Lists
  • One
  • Two
    • that is
    • that's nice
    • that's good
  • Three
  • Four

No comments:

Post a Comment