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 trialJose Calvario
Front End Web Development Techdegree Student 775 PointsHi! 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?
4 Answers
Jose Calvario
Front End Web Development Techdegree Student 775 PointsGuys 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>
Jose Calvario
Front End Web Development Techdegree Student 775 PointsSorry Guys I got it (I wrote "a ref" instead of "a href"). Thanks any!
Eduardo Aguirre
1,153 PointsThe "h" in href!
Shreyash Agarwal
9,843 PointsMark 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.
Garrett Sanderson
12,735 PointsGarrett Sanderson
12,735 PointsHi Jose,
Can you post your code so we can take a look at what might be wrong.