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

Jose Calvario
seal-mask
.a{fill-rule:evenodd;}techdegree
Jose Calvario
Front End Web Development Techdegree Student 775 Points

Hi! Why after saving my code and click on preview I can´t see the Bullet points as Links. Any Explanation

After saving my code in Workspace and watch the preview and make refresh I can´t see the Three Bullet points in Blue as a Link. All appears in Black color? My code is correct just like Nick´s...Doing something wrong?

Garrett Sanderson
Garrett Sanderson
12,735 Points

Hi Jose,

Can you post your code so we can take a look at what might be wrong.

4 Answers

Jose Calvario
seal-mask
.a{fill-rule:evenodd;}techdegree
Jose Calvario
Front End Web Development Techdegree Student 775 Points

Guys this is my code. Can´t figure out what´s wrong!

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Jose Calvario | Designer</title> </head> <body> <header> <a ref="index.html"> <h1>Jose Calvario</h1> <h2>Designer</h2>
</a> <nav> <ul> <li><a ref="index.html">Portfolio</a></li> <li><a ref="about.html">About</a></li> <li><a ref="contact.html">Contact</a></li> </ul> </nav> </header> <section> <p>Gallery will go here</p> </section> <footer> <p>© 2015 Jose Calvario.</p>

</footer>

</body>

</html>

The "h" in href!

Shreyash Agarwal
Shreyash Agarwal
9,843 Points

Mark each of the <li> elements as anchor and try. Here's what it should look like... <ul> <a> <li> Item here</li></a> <a> <li> Item 2 here</li></a> </ul>

I hope this helps you.