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.

hannahbetts
8,199 Pointsi have watched the video to the add a image to gallery, my html is the same yet this is not working in the task
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hannah Betts | Designer</title>
</head>
<body>
<header>
<a href="Index.html">
<h1>Hannah Betts</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 scr="img/numbers-01.jpg" alt="">
<p>Experimentation with colour and texture.</p>
</a>
</li>
<li>
<a href="img/numbers-02.jpg">
<img scr="img/numbers-02.jpg" alt="">
<p>Blenindg styles.</p>
</a>
</li>
<li>
<a href="img/numbers-06.jpg">
<img scr="img/numbers-06.jpg" alt="">
<p>Glow styles.</p>
</a>
</li>
<li>
<a href="img/numbers-09.jpg">
<img scr="img/numbers-09.jpg" alt="">
<p>Retition sytles.</p>
</a>
</li>
<li>
<a href="img/numbers-12.jpg">
<img scr="img/numbers-12.jpg" alt="">
<p>Drip sytles.</p>
</a>
</li>
</ul>
</section>
<footer>
<p1> © 2014 Hannah Betts.</p1>
</footer>
</body>
</html>
3 Answers

Samantha Atkinson
Front End Web Development Techdegree Student 34,894 PointsHi Hannah,
Check your img code as you have typed the source as scr instead of src. So it should be < img src="img/number-01.jpg">
Hope this is in time.

Dustin Matlock
33,856 PointsHi Hannah, looks like you have index.html capitalized. Should be <a href="index.html">
(lowercase i). Hope this works for you .

Sreng Hong
15,083 PointsThere are no <p1>
tags in html
<p1> © 2014 Hannah Betts.</p1>