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

moving forward

this is the step that I can not figure out

index.html
  <!DOCTYPE> 
<head>

  <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

Hi Daniel Holmes,

Under Head tags, it often referred to the "head of the page", we must put information about title, description, external files (css sheet link, font awesome link, javascript scripts, etc), they will always need to load before the page is displayed.

Under Body tags, you are expect to show up anything on the screen, for example- topics, description, images, paragraph stories.

<!DOCTYPE> 
// This is HEAD tags
<head>
  <meta charset="utf-8">
  <title>Futuristic MASH</title>
  <link href="style.css" rel="stylesheet">
</head>

// This is BODY tags
<body>
  <h1>Futuristic MASH</h1>
  <p> Directions to play the game: </p>
</body>

Hope that helps.