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

Work completed (and correct) will not let me move onto new task...

Wil not let me move on to next task.

index.html
<!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>&copy; 2017 Patricia Thornton.</p>
              </footer>
              </body>
            </html>

2 Answers

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi 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! :sparkles:

Thanks Jennifer! LOL.. It was saying great job done, but not letting me move forward :)