0

I know how to create an unordered list in HTML. Below is a basic construct. However, I need to have a list that will have both bullets and non-bullets within the same div section. Second item below is the desired result.

 <div class = "dropdown menu"
 <ul class = "bullet">
 <li>Example</li>
 <li>Example2</li>
 <li>Example3</li>
 </ul>
 </div>



 - first item
 - second item
 - Third item
       Call xyz for details
 - 4th Items
       Call abc for details
Calflamesfann
  • 133
  • 4
  • 16

1 Answers1

1

Not without bullets, but you can indent normally like so:

<OL>
<LI>Main Heading
<UL>
<LI>List item 1
<LI>List item 2
</UL>
<LI>Secondary Heading
<UL>
<LI>List item 1
<LI>List item 2
</UL> 
</OL>
  1. Main Heading

    • List item 1
    • List item 2
  2. Secondary Heading

    • List item 1
    • List item 2
Mark Hollis
  • 151
  • 1
  • 13