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 trialSoumya Rout
Courses Plus Student 903 PointsAbout Links
my lists does not change into hyper links on the browser , I code exactly what Nick has coded in the video.
Soumya Rout
Courses Plus Student 903 Pointshttps://w.trhou.se/xy8dap9czm here is my snapshot of my codes
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! This is an easy fix. You have a misspelling. Here's your code:
<ul>
<li><a herf="index.html">Portfolio</a></li>
<li><a herf="about.html">About</a></li>
<li><a herf="contact.html">Contact</a></li>
</ul>
That should be href not herf. Here's how it should look:
<ul>
<li><a href="index.html">Portfolio</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
Happy coding!
Soumya Rout
Courses Plus Student 903 PointsThanks for help !!!
Jennifer Nordell
Treehouse TeacherJennifer Nordell
Treehouse TeacherWell first, let's make sure the basics are in order. Make sure you're saving your files and then refreshing the preview in the browser. If that still fails, we're going to need to see your code. The easiest way to do this is to link us a snapshot.