Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Dion Allen
238 PointsNothing is coming out how it does on the video.
Everything is different when I preview.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dion Allen | Artist</title>
</head>
<body>
<header>
<a href="index.html"
<h1>Dion Allen</h1>
<h2>Artist</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/number-01.jpg">
<img src="img/number-01.jpg" alt="">
<p>Experimentation with color and texture.</p>
</a>
</li>
<li>
<a href="img/number-02.jpg">
<img src="img/number-02.jpg" alt="">
<p>I'm Popping Baby.</p>
</a>
</li>
<li>
<a href="img/number-06.jpg">
<img src="img/number-06.jpg" alt="">
<p>Deal Wit It.</p>
</a>
</li>
<li>
<a href="img/number-09.jpg">
<img src="img/number-09.jpg" alt="">
<p>Big Tits.</p>
</a>
</li>
<li>
<a href="img/number-12.jpg">
<img src="img/number-12.jpg" alt="">
<p>Monkey Camera.</p>
</a>
</li>
</ul>
</section>
<footer>
<a href="http://twitter.com/mallyonnoj"></a>img src="img/twitter-wrap.png" alt="Twitter Logo"></a>
<a href="http://facebook.com/DionAllen"></a><img src="img/Facebook-wrap.png" alt="Facebook Logo"></a>
<p>© 2014 Dion Allen.</p>
</footer>
</body>
</html>
3 Answers

Larry Coonrod
5,041 PointsDion, If you want to post code you need to use mark down language so it displays in a readable format. Use three backticks and the language (```HTML) then post your code on the next line and then drop down and close it with three more backticks so it displays like this:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Dion Allen | Artist</title> </head> <body> <header> <a href="index.html" <h1>Dion Allen</h1> <h2>Artist</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/number-01.jpg"> <img src="img/number-01.jpg" alt=""> <p>Experimentation with color and texture.</p> </a> </li> <li> <a href="img/number-02.jpg"> <img src="img/number-02.jpg" alt=""> <p>I'm Popping Baby.</p> </a> </li>
<li> <a href="img/number-06.jpg"> <img src="img/number-06.jpg" alt=""> <p>Deal Wit It.</p> </a> </li> <li> <a href="img/number-09.jpg"> <img src="img/number-09.jpg" alt=""> <p>Big Tits.</p> </a> </li> <li> <a href="img/number-12.jpg"> <img src="img/number-12.jpg" alt=""> <p>Monkey Camera.</p> </a> </li> </ul> </section> <footer> <a href="http://twitter.com/mallyonnoj"></a>img src="img/twitter-wrap.png" alt="Twitter Logo"></a> <a href="http://facebook.com/DionAllen"></a><img src="img/Facebook-wrap.png" alt="Facebook Logo"></a> <p>© 2014 Dion Allen.</p> </footer> </body> </html>
Sorry I don't have time to debug it for you. I will later if you don't get an answer, but at least now people can read it easier.

Tamas Gonda
7,332 PointsHey Buddy. I have found a typo so far. Where you linking your twitter png, the opening img hasn't got a < in front of img, so it can cause problem in your code. I hope it will help

Christopher Debove
Courses Plus Student 18,372 PointsSeeing your code your missing some angle brackets (when closing or opening a tag)
Larry Coonrod
5,041 PointsLarry Coonrod
5,041 PointsOr not! Try copying and pasting from the challenge page using markdown.