Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

MUZ140560 Tandiwe Tsanulani
1,172 PointsSecond level header
I am stuck on this stage. Please help
<!DOCTYPE html>
<html>
<head>
<title>HTML Mastery Challenge</title>
</head>
<body>
<h1>HTML Mastery Challenge</h1>
<!-- Write your code below -->
<div>
<h2>ShoppingList</h2>
</div>
</body>
</html>
2 Answers
John Steer-Fowler
Courses Plus Student 11,734 PointsHi there,
A 'second level header' is this:
<h2>Shopping List</h2>
Hope this helps

Christopher Beynon
10,258 PointsYou need to add a ordered list after your 'h2' tag, remember ordered lists are made with a 'ol' tag and the items in it are made with a 'li' tag.
<div>
<h2>Shopping List</h2>
<ol>
<li></li>
<li></li>
<li></li>
</ol>
</div>

MUZ140560 Tandiwe Tsanulani
1,172 PointsThank you

MUZ140560 Tandiwe Tsanulani
1,172 PointsThank you