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 trialhannahbetts
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 Graduate 40,307 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>