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 One Solution

Why does my ordered list not show as numbered?

<section> <h2>Schedule</h2> <ol> <l1> <h3>Get Ready for the Future of CSS</h3> <p>Cee Esses</p> <p>12:00pm</p> </l1>

          <l1>
            <h3>All Things Frameworks</h3>
            <p>Jay Query</p>
            <p>1:00pm</p>
          </l1> 

          <l1>
            <h3>ES2018 and Beyond</h3>
            <p>Ecma Scriptnstuff</p>
            <p>2:00pm</p></l1> 
        </ol>
    </section>

1 Answer

Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,252 Points

It looks like you've set your list item tags li as l1. Try fixing that and you should be good to go! 🙂

whooops. Thank you!!