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
Gregory Anderson
655 PointsHow do I individualize each tab with a different link?
Below is my code. You'll see I have attached a link to the follow me list item. Now that link is attached to the below list items and also whats in my section and and footer tags. How do i remove where its only used for the follow me list item?
<li> HOME </li> <li> BLOG </li> <li> DOWNLOADS </li> <li> SHOP </li> <li> <a href="http://www.facebook.com" </a> FOLLOW ME </li> <li> CONTACT </li> </ul> </header> <section> <h3> HOT THIS WEEK </h3> </section>
<footer> <p>©2018 Modern - Vintage Ent </p> </footer>
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! I think you're doing great, but your link seems a bit off to me. First, you forgot the closing bracket on the beginning anchor tag. Secondly, I feel like the text should be inside the link.
You wrote:
<li> <a href="http://www.facebook.com" </a> FOLLOW ME </li>
But I think you want:
<li> <a href="http://www.facebook.com">FOLLOW ME</a></li>
Give that a go and see if it helps!