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 trialNiall Maher
16,985 PointsI can't seem to link the style sheets?
Here is my code I just can't figure it out :/ (the folder name I have the files in is called "style" )
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Niall Maher | Designer</title> <link rel="stylesheet" href="style/normalize.css"> <link rel="stylesheet" href="style/main.css"> </head> <body> <header> <a href="index.html"> <h1>Niall Maher</h1> <h2>Designer</h2> </a> <nav> <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> </nav> </header> <section> <ul> <li> <a href="img/numbers-01.jpg"> <img src="img/numbers-01.jpg" alt=""> <p>Caption example</p> </a>
</li>
<li>
<a href="img/numbers-02.jpg">
<img src="img/numbers-02.jpg" alt="">
<p>Caption example</p>
</a>
</li>
<li>
<a href="img/numbers-06.jpg">
<img src="img/numbers-06.jpg" alt="">
<p>Caption example</p>
</a>
</li>
</ul>
</section>
<footer>
<a href=#>
<img src="img/twitter-wrap.png" alt="Twitter Logo">
</a>
<a href=#>
<img src="img/facebook-wrap.png" alt="Twitter Logo">
</a>
<p>© 2015 Niall Maher</p>
</footer>
</body> </html>
3 Answers
Daniel Santos
34,969 PointsYou are missing your <head></head> tags
That should fix it! If not let me know.
<head>
<title>Niall Maher | Designer</title>
<link rel="stylesheet" href="style/normalize.css">
<link rel="stylesheet" href="style/main.css">
</head>
Niall Maher
16,985 PointsYeah I did that the head tags just aren't showing here
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="style/normalize.css"> <link rel="stylesheet" href="style/main.css"> <meta charset="utf-8"> <title>Niall Maher | Designer</title>
</head>
Niall Maher
16,985 PointsAnyone have any more ideas??
Daniel Santos
34,969 PointsCan you snapshot your workspaces, so I can see the files and directories?
Niall Maher
16,985 PointsI can't figure out how to upload an image? Do you have sample code for the finished html code and I'll see if it'll link then? Just in case something simple has it not working