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 trial

HTML How to Make a Website HTML First Use HTML Elements

I 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

index.html
<!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> &copy; 2017 Creative Codes</footer>
  </body>
</html>

2 Answers

Trevor Johnson
Trevor Johnson
14,427 Points

Hi 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.

Thanks guys will be more careful next time

Steven Parker
Steven Parker
230,274 Points

Your 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".