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 trialpatti thornton
688 PointsWork completed (and correct) will not let me move onto new task...
Wil not let me move on to next task.
<!doctype html>
<html>
<head>
<meta Charset="utf-8">
<title> Patricia Thornton | Designer </title>
</head>
<body>
<header>
<h1> Patricia Thornton <h1>
<h2>Designer<h2>
</header>
<section>
<p> Gallery will go here </p>
</section>
<footer>
<p>© 2017 Patricia Thornton.</p>
</footer>
</body>
</html>
2 Answers
Jennifer Nordell
Treehouse TeacherHi there! You're doing great, but you've included some things not asked for by the challenge. And in two instances, you have errors.
Here are the offending lines:
<h1> Patricia Thornton <h1>
<h2>Designer<h2>
Both the h1 and h2 tags need to be properly closed like so:
<h1> Patricia Thornton </h1>
<h2>Designer</h2>
Alternatively, you could remove them all together as the challenge does not require them.
Hope this helps!
patti thornton
688 PointsThanks Jennifer! LOL.. It was saying great job done, but not letting me move forward :)