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

JavaScript Treehouse Club - MASH MASH - HTML Thinking With Your Head

I'm doing exactly what is written and no more no less. I'm sorry but I can't get past work check?

Please see if I've made an error based on her first video mking MAS

index.html
<head>
  <!DOCTYPE> 
  <meta charset="utf-8">
  <title>Futuristic MASH</title>
  <h1>Futuristic MASH</h1>
  <link href="style.css" rel="stylesheet">
  <p> Directions to play the game: </p>
</head>
Eric M
Eric M
11,545 Points

Hi Robin, the code you posted is what the challenge starts with, you need to remove the elements that shouldn't be in head and put them where they should be, so your code should look different.

1 Answer

Eric Harris
Eric Harris
2,391 Points

It's asking you to delete everything that should not be in the head tags. Below should help you pass.

<head>
  <meta charset="utf-8">
  <title>Futuristic MASH</title>
  <link href="style.css" rel="stylesheet">
</head>