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

Naoki Yoshida
Naoki Yoshida
6,984 Points

My webpage preview shows the tittle above the h1 content. Shouldn't it be hidden?

Am I missing something?

This is the code: <!DOCTYPE html> <html> <head> <tittle> Aleatory dating site </tittle> </head> <body> <h1>Resume</h1> </body> </html>

2 Answers

Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,252 Points

You have a little typo for your <title> element.

In your HTML, change <tittle> Aleatory dating site </tittle> to read <title> Aleatory dating site </title>

Naoki Yoshida
Naoki Yoshida
6,984 Points

First typo in journey thank you!

Jonathan Grieve
Jonathan Grieve
Treehouse Moderator 91,252 Points

Good luck with the rest of it. You'll likely have a lot of these in the years to come like everyone else. It's part of the package. 😀