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 trialJonathan Lara
3,987 PointsHow i do dis?
Bikes
2 Answers
Frederico Graciano
Courses Plus Student 2,768 PointsWell UL = Unordered list. You can learn more about Unordered lists here: https://teamtreehouse.com/library/how-to-make-a-website/creating-html-content/use-the-navigation-element
http://www.w3schools.com/html/html_lists.asp
The first part of the challenge asks you to create a Unordered list inside the section element like this:
<section>
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</section>
The Second and last Part asks you to add the img tag and link the specified images to the unordered list and leave the alt blank. like this:
<section>
<ul>
<li><img src="numbers-01.jpg" alt=""></li>
<li><img src="numbers-02.jpg" alt=""></li>
<li><img src="numbers-06.jpg" alt=""></li>
</ul>
</section>
Unsubscribed User
8,841 PointsThe challenge can be completed by adding un-ordered list to the section.
....
</header>
<section>
<ul>
<li><img src="numbers-01.jpg"></li>
<li><img src="numbers-02.jpg"></li>
<li><img src="numbers-06.jpg"></li>
</ul>
</section>
<footer>
.....