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 trialANNA CAMPBELL
1,706 PointsMy links arent working in my contact page, can some one spot the error?
The links arent clickable for some reason.
<section>
<h3>General Information</h3>
<p>I am not currently looking. If you have questions, contact me. </p>
<p>Email is best</p>
</section>
<section>
<h3>Contact Details</h3>
<ul class="contact-info">
<li class="phone"><a herf="tel:530-362-8081">530-362-8081</a></li>
<li class="mail"><a herf="mailto:anna@thecampbellcraft.com"> anna@thecampbellcraft.com</a></li>
<li class="twitter"><a herf="http://twitter.com/intent/tweet?screen_name=campbell_craft">@thecampbell_craft</a></li>
</ul>
</section>
3 Answers
Tobias Helmrich
31,603 PointsHey Anna,
yes, I can spot the error: You always have a typo in the href attribute, you're writing "herf" instead. If you fix that it should work! Good luck! :)
Tarek El Hinaoui
Courses Plus Student 13,220 PointsYou have an error with href keyword.. it is href and not herf..
ANNA CAMPBELL
1,706 PointsOh my, that hilariously embarrassing. I was staring at it and not seeing it, thank you.
Tobias Helmrich
31,603 PointsNo problem, don't feel embarrassed though! Those small mistakes happen to all of us and the tunnel vision when looking at your own code can sometimes prevent you from seeing the easiest mistakes. :)