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!
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

Diego paredes
432 Pointslink
hi, I was fallowing the instruction in the vidio and my code looks the same but my brower don't show the image or link my facebok and twitter account.
4 Answers

Dov Breuer
8,268 PointsDid you upload the image to the correct folder?

Diego paredes
432 Points<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Diego O. Paredes | designer</title>
</head>
<body>
<header>
<a href="index.html">
<h1>Diego O. Paredes</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>Expirementation with color and texture. </p>
</a>
</li>
<li>
<a href="img/numbers-02.jpg">
<img src="img/numbers-02.jpg" alt="">
<p>Playing with blending mode in photoshop. </p>
</a>
</li> <li>
<a href="img/numbers-06.jpg">
<img src="img/numbers-06.jpg" alt="">
<p>Trying to create an 80's style of glows. </p>
</a>
</li> <li>
<a href="img/numbers-09.jpg">
<img src="img/numbers-09.jpg" alt="">
<p>Drips create using photoshop brushes. </p>
</a>
</li> <li>
<a href="img/numbers-12.jpg">
<img src="img/numbers-12.jpg" alt="">
<p>Creationg shapes using repetition. </p>
</a>
</li>
</ul>
</section>
<footer>
<a href"http://twitter.com/DiegoDiego1023"><img src="img/twitter-wrap.png" alt"twitter Logo"></a>
<a href"http://facebook.com/diego.paredescastillo"><img src="img/facebook-wrap.png" alt"facebook Logo"></a>
<p>© 2014 Diego O. Paredes</p>
</footer>
</body>
</html>

Dave McFarland
Treehouse TeacherTo put code into a forum post use triple back ticks -- ``` ā around the code. I fixed your code here, but in the future here's a forum discussion that describes how to add HTML, CSS, JavaScript or other code to the forum: https://teamtreehouse.com/forum/posting-code-to-the-forum

Dave McFarland
Treehouse TeacherYou need to use the =
symbol to assign a value to an element attribute like the href
attribute:
<a href="http://twitter.com/DiegoDiego1023">
Same for the alt
attribute:
<img src="img/twitter-wrap.png" alt="twitter Logo">

Diego paredes
432 Pointsthanks, it was very helpfull :)
Dave McFarland
Treehouse TeacherDave McFarland
Treehouse TeacherCan you paste the HTML you created in here?