Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML Introducing the Practice

enoch okyere
enoch okyere
4,681 Points

How do I nest the unordered list within the ordered list, as depicted in the schedule portion of the webpage ?

The schedule headings are numbered, however the list items below them are not; how do I go about doing this ?

1 Answer

Tabish Kazi
Tabish Kazi
5,951 Points

I hope this helps.

<ol>
  <li>Ordered List item 1</li>
  <ul>
    <li>Unordered List item 1</li>
    <li>Unordered List item 2</li>
  </ul>
</ol>