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

what is incorrect?

i don't understand what i am doing incorrectly in this part of the code challenge.

I believe i'm setting the character set properly and repeated my steps... what am i missing?

<!DOCTYPE html>
<html>
  <head>
    <meta carset="utf-8">
    <title>Charlotte Ryerse</title>
  </head>
  <body>
    <header>
      <h1>Charlotte Ryerse</h1>
      <h2>Designer</h2>
    </header>
    <section>
      <p>Gallery Will Go Here!</p>
    </section>
    <footer>
      <p>&copy; 2014 Charlotte Ryerse.</p>
    </footer>
  </body>
</html>

4 Answers

It's always best to post your code so we can better help you.

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>This is our title.</title>
  </head>
  <body>
    <header>This is our HEADER text.</header>
    <section>This is our SECTION text.</section>
    This is our BODY text.
   </body>
  <footer> This is our FOOTER text.</footer>
</html>
  1. Always make sure to close every tag you open.
  2. Make sure you check caps and spaces. (They can sometimes mess up code. Especially in Ruby)
  3. In HTML the last tag opened is the first one to close. You learn this later with ul and ol tags for list.

Hope this helps you and good luck!

Carson Clark
Carson Clark
2,159 Points

Could we see a sample of your code? Please describe the issue you're having in more detail.

sorry thought this question connected to the screen i was working in. <!DOCTYPE html> <html> <head> <meta carset="utf-8"> <title>Charlotte Ryerse | Designer</title> </head> <body></body> </html>

Thanks... looks like i was using <meta carset="utf-8"> instead of <meta charset="utf-8">

Oops, sorry - comment added in error!