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 Treehouse Club: HTML Publish a Story Write a comment in HTML

how to tell you are going to write a story

<!--

index.html
<!-- <!DOCTYPE html>
<html>
   <h1> 
     Team Tree House Review.
   </h1>  
    <body>
  <h1> --------------------------------
    </h1>
       <h1>
         Why TreeHouse is fun and easy!  
     </h1>
       <p> 
     TeamTreeHouse is very fun. The thing I like most about it is that it teaches you to code! I did not know this untill my mom showed me it. Now I can
     make websited disign a game and much more!
       </p>
   <p> Sometimes TreeHouse can be frustrating but if you redo the videos it will be alot eaiser!
     </p> 
   </body> 
</html> -->

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there, Jace! You have done the beginning and ending comment tags correctly, but they are misplaced. Also, you're missing the text as required by the challenge. The placement of these tags is important. Anything between them will be "commented out" and not rendered by the browser. So, you have essentially disabled all the HTML in that file.

This is what it's looking for on line one. You will likely have to make a new line above the <!DOCTYPE html>.

<!-- this application is going to tell a story -->

Good luck and happy coding! :sparkles: