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

Need help..

my facebook link words are in red and my closing footer- div- body- html. are close on the bottom

Sreng Hong
Sreng Hong
15,083 Points

You can post your code, so we can help!!!

how can i do that??

Sreng Hong
Sreng Hong
15,083 Points

you can see the Markdown Cheatsheet near the post comment, i'll teach you how to post html code and others.

copy and paste

i do cope and paste -.- the whole code doesnt come out

Sreng Hong
Sreng Hong
15,083 Points

you use the wrong sign. this one ` not this one '

is it right ?

(<!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>&copy; 2014 Bryan Gomez.</p> </footer> </div> </body> </html>)

gonna destroy everything -.- haha

Bummer. It appears the page you're looking for doesn't exist.

doesnt work

Sreng Hong
Sreng Hong
15,083 Points

Let Nancy helps you, and after that you should learn more about Markdown for easy to ask question in forum. Good Luck

thank you for showing me how to post my code XD!!

6 Answers

William Williamson
William Williamson
8,321 Points

Close the quotation marks on ' alt="Twitter Logo ' and ' alt="Facebook Logo '

<a href="http://facebook.com/nancy.deever"><img src="img/facebook-wrap.png" alt="Facebook logo" class="social-icon"></a>

ha ha ha...did you check your opening and closing </ before your facebook?

<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

you need " at the end of logo

its still red >.<

="Facebook Logo"</a>

Yay i got it <3!!!

but now my

    </div>
  </body>  
</html>```

is highlight red >.<

check your spacing...

okay give me a sec.

yeah i think . i did to many CRTL+] to many times that made spacing . any way i could undo ??

yes...did you get it all out of red yet?

It's still red :/

It's still red :/

It's still red :/

I've missed it before too...no big deal...

now my ending footer n div n body n html -.- r Red highlight ..

Christopher Ponce
Christopher Ponce
2,766 Points

try to make your code more readable cuz its really hard to see where is the error

How cab I do that ??

Christopher Ponce
Christopher Ponce
2,766 Points

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

Okay let me see if I can do that .