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 trialRobin Smith
1,429 PointsI'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
<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>
1 Answer
Eric Harris
2,391 PointsIt'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>
Eric M
11,546 PointsEric M
11,546 PointsHi 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.