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 trialDaniel Holmes
2,765 Pointstrouble again
confused about what I am doing wrong please help
<!DOCTYPE>
<h1>
<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
Falk Schwiefert
8,706 PointsIn the challenge you have the head of an html document. And there are a bunch of tags in there that don't belong between the <head> tags.
<head>
<!DOCTYPE> /*this goes above everything because it specifies the document type.*/
<meta charset="utf-8">
<title>Futuristic MASH</title>
<h1>Futuristic MASH</h1> /*this is a headline and used in the body */
<link href="style.css" rel="stylesheet">
<p> Directions to play the game: </p> /*this is a paragraph and should go into the body as well*/
</head>
Your mission, if you are going to accept it, is to remove the elements that don't belong.
Just delete them. :)