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 trialNelson Cole
1,423 PointsWhy is my title showing up on the page instead of on the tab like in the lesson? I am using Google Chrome on a PC
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <tittle>Nelson Cole | Designer</tittle> </head> <body> <header> <h1>Nelson Cole</h1> <h2>Designer</h2> </header> <section> <p>Gallery will go here.</p> </section> <footer> <P>© 2015 Nelson Cole.</P> </footer>
</body> </html>
4 Answers
Paul Ogden
7,709 PointsIs something like this at the top of your html? If so, can you post your code?
<head>
<title>HTML Reference</title>
</head>
Paul Ogden
7,709 PointsYou have an extra 't' in 'title' :D
Nelson Cole
1,423 Points<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <tittle>Nelson Cole | Designer</tittle> </head> <body> <header> <h1>Nelson Cole</h1> <h2>Designer</h2> </header> <section> <p>Gallery will go here.</p> </section> <footer> <P>© 2015 Nelson Cole.</P> </footer>
</body> </html>
Christopher Mlalazi
Front End Web Development Techdegree Graduate 17,305 PointsYou needed to use a <head></head> just like I have shown below, but then by now you must have solved this hey :)
<head>
<meta charset="utf-8">
<title>Nelson Cole | Designer</title>
</head>
<header>
<h1>Nelson Cole</h1>
<h2>Designer</h2>
</header>
Richard Burkhart
551 PointsRichard Burkhart
551 PointsYour tag says "tittle." It should be "title."