The <ul> element, combined with the li element, allows for the definition of a list.
Type attribute: &nbsp;
Select one the the type attributes to see it's effect on the provided example.
  • First line item
  • Second line item
  • Third line item
  • Fourth line item
                     
        <ul id="ul-display" type="disc">
            <li>First line item</li>
            <li>Second line item</li>
            <li>Third line item</li>
            <li>Fourth line item</li>
        </ul>