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

HTML How to Make a Website Creating HTML Content Use the Navigation Element

simon k
simon k
592 Points

hyperlink not appearing

my hyperlink isn't appearing in the preview work space. I gone through the coding but I cant seem to figure out what is wrong:

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Simon Khong | Designer</title> </head> <body> <header> <a herf="index.html"> <h1>Simon Khong</h1> <h2>Designer</h2> </a> <nav> <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> </nav> </header> <section> <p>Gallery will go here</p> </section> <footer> <p>Ā© 2015 Simon Khong.</p> </footer> </body> </html>

Hi, You have herf

Change that to

href ;-). Happy coding

2 Answers

simon k
simon k
592 Points

Thank you.

You're most welcome.