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

My code is messed up! I need help>>>

it keeps telling me.."Bummer! Remember to add a meta tag to the head tag."

index.html
<!DOCTYPE html>
<html>
    <meta charset="utf-8">
  <head>Alex </head>
      <body>
  <header>Alex Duty  |  Bmx racer</header>
  <h1>BMX is AWESOME!</h1>
  </body>
</html>

2 Answers

Evgeniia Mas
Evgeniia Mas
4,452 Points

In head you should keep special info such as meta tags, keywords which don't display on page. Remove name Alex and put there the above line with <meta charset=utf-8">. If you want Alex to display at the top at the window of browser you can take it in title tags (opened and closed) and leave it in head.

You should have had the meta tag inside the head tag.

Also inside the head tag, you should have put the word 'Alex' inside a title tag.

Like this:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Alex</title>
  </head>
  <body>
    <header>Alex Duty  |  Bmx racer</header>
    <h1>BMX is AWESOME!</h1>
  </body>
</html>

Hope that helps.