UL: HTML Unordered List

The <ul></ul> tag defines an unordered list. Used in conjunction with li to define the list items.

Example 1:

Database
<ul>
 <li>Oracle</li>
 <li>MySQL</li>
 <li>MaxDB</li>
</ul>

Result:

Database

  • Oracle
  • MySQL
  • MaxDB

Example 2:

<UL>
<LI>UNIX
 <UL>
 <LI>Solaris
 <LI>HP-UX
 </UL>
<LI>Linux
 <UL>
 <LI>Red Hat
 <LI>SuSE
 </UL>
</UL>

Result

  • UNIX
    • Solaris
    • HP-UX
  • Linux
    • Red Hat
    • SuSE

You May Also Like

Leave a Reply?