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 Introduction to HTML and CSS (2016) Adding a New Web Page Set up an HTML Document

Francesca Gattolin
seal-mask
.a{fill-rule:evenodd;}techdegree
Francesca Gattolin
Front End Web Development Techdegree Student 668 Points

after creating a new doctype following the instructions. when i try to preview and see if it works, when adding /resume

when we add resume betwen <h1> tags to than refresh and se if it works from the main page, mine didnt work :( ?

1 Answer

eslam said
PLUS
eslam said
Courses Plus Student 6,734 Points

your code should look like this

<!DOCTYPE html>
  <html>
    <head>
      <title>your title goes here</title>
    </head>

    <body>
     <h1>your h1 goes here</h1>
    </body>
 </html>