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 trialTumayi Comfort Nyamakura
1,515 PointsI have checked and rechecked my code but I still get a Bummer
Can someone check why I still get a Bummer when my code seems to be ok
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tumayi Nyamakura|Designer<title>
</head>
<body>
<header>
<h1>Creative Codes</h1>
<h2> Web and mobile application development</h2>
</header>
<section>
<p> Image Gallery For Completed Work goes here</p>
</section>
<footer> © 2017 Creative Codes</footer>
</body>
</html>
2 Answers
Trevor Johnson
14,427 PointsHi there,
The problem is that you need to close your title tag. Right now you have two opening title tags instead of an opening and a closing tag. It should work fine once you do that. Hope that helps.
Steven Parker
231,198 PointsYour closing title
tag is missing the slash ("/
").
You have "<title>
" where it should be "</title>
".
But it's odd that it didn't catch this while checking task 5. You may want to report this to Support, it might get you a "special Exterminator badge".
Tumayi Comfort Nyamakura
1,515 PointsTumayi Comfort Nyamakura
1,515 PointsThanks guys will be more careful next time