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 trialBryan Gomez
288 PointsNeed help..
my facebook link words are in red and my closing footer- div- body- html. are close on the bottom
Bryan Gomez
288 Pointshow can i do that??
Sreng Hong
15,083 Pointsyou can see the Markdown Cheatsheet near the post comment, i'll teach you how to post html code and others.
Nancy Deever
1,362 Pointscopy and paste
Bryan Gomez
288 Pointsi do cope and paste -.- the whole code doesnt come out
Sreng Hong
15,083 Pointsyou use the wrong sign. this one ` not this one '
Bryan Gomez
288 Pointsis it right ?
Bryan Gomez
288 Points(<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Bryan Gomez | Photographer</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
<a href="index.html">
<h1>Bryan Gomez</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>
<div>
<section>
<ul>
<li>
<a href="img/numbers-01.jpg">
<img src="img/numbers-01.jpg" alt="">
<p>Ecperimention 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 modes 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 created using photoshop brushes.</p>
</a>
</li>
<li>
<a href="img/numbers-12.jpg">
<img src="img/numbers-12.jpg" alt="">
<p>Creating shapes using repettion.</p>
</a>
</li>
</ul>
</section>
<footer>
<a href="http://twitter.com/BryanGKidoo"><img src="img/twitter-wrap.png" alt="Twitter Logo</a>
<a href="http://facebook.com/WHATHAPPENKIDOO"><img src="img/facebook-wrap.png" alt="Facebook Logo</a>
<p>© 2014 Bryan Gomez.</p>
</footer>
</div>
</body>
</html>
)
Bryan Gomez
288 Pointsgonna destroy everything -.- haha
Sreng Hong
15,083 PointsSee this link and it may help
Bryan Gomez
288 PointsBummer. It appears the page you're looking for doesn't exist.
doesnt work
Sreng Hong
15,083 PointsLet Nancy helps you, and after that you should learn more about Markdown for easy to ask question in forum. Good Luck
Bryan Gomez
288 Pointsthank you for showing me how to post my code XD!!
6 Answers
William Williamson
8,321 PointsClose the quotation marks on ' alt="Twitter Logo ' and ' alt="Facebook Logo '
Nancy Deever
1,362 Points<a href="http://facebook.com/nancy.deever"><img src="img/facebook-wrap.png" alt="Facebook logo" class="social-icon"></a>
Nancy Deever
1,362 Pointsha ha ha...did you check your opening and closing </ before your facebook?
Bryan Gomez
288 Points<a href="http://twitter.com/BryanGKidoo"><img src="img/twitter-wrap.png" alt="Twitter Logo</a>
<a href="http://facebook.com/WHATHAPPENKIDOO"><img src="img/facebook-wrap.png" alt="Facebook Logo</a>
of course i did .. i think lol
Nancy Deever
1,362 Pointsyou need " at the end of logo
Bryan Gomez
288 Pointsits still red >.<
Nancy Deever
1,362 Points="Facebook Logo"</a>
Bryan Gomez
288 PointsYay i got it <3!!!
but now my
</div>
</body>
</html>```
is highlight red >.<
Nancy Deever
1,362 Pointscheck your spacing...
Bryan Gomez
288 Pointsokay give me a sec.
Bryan Gomez
288 Pointsyeah i think . i did to many CRTL+] to many times that made spacing . any way i could undo ??
Nancy Deever
1,362 Pointsyes...did you get it all out of red yet?
Bryan Gomez
288 PointsIt's still red :/
Bryan Gomez
288 PointsIt's still red :/
Bryan Gomez
288 PointsIt's still red :/
Nancy Deever
1,362 PointsI've missed it before too...no big deal...
Bryan Gomez
288 Pointsnow my ending footer n div n body n html -.- r Red highlight ..
Christopher Ponce
2,766 Pointstry to make your code more readable cuz its really hard to see where is the error
Bryan Gomez
288 PointsHow cab I do that ??
Christopher Ponce
2,766 Pointstry commenting your code in html you have to use this <!-- this is a comment-->
try to use indentation like this
<li>
<a href="img/numbers-01.jpg">
<img src="img/numbers-01.jpg" alt="">
<p>Experimentacion con colores y textura</p>
</a>
</li>
<li>
<a href="img/numbers-02.jpg">
<img src="img/numbers-02.jpg" alt="">
<p>Playin 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 style of glows</p>
</a>
</li>
<li>
<a href="img/numbers-09.jpg">
<img src="img/numbers-09.jpg" alt="">
<p>drips created using photoshop burshes</p>
</a>
</li>
<li>
<a href="img/numbers-12.jpg">
<img src="img/numbers-12.jpg" alt="">
<p>repetition</p>
</a>
</li>
</ul>
Bryan Gomez
288 PointsOkay let me see if I can do that .
Sreng Hong
15,083 PointsSreng Hong
15,083 PointsYou can post your code, so we can help!!!