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 trialNaoki Yoshida
6,984 PointsMy 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
Treehouse Moderator 91,253 PointsYou 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
6,984 PointsFirst typo in journey thank you!
Jonathan Grieve
Treehouse Moderator 91,253 PointsGood 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. 😀