Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Yusuf Akviran
2,668 PointsTitle element on the page
I get this error. "Bummer! A title element needs to appear between the head tags."
My codes is:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<tittle>Yusuf Akviran | Computer Engineer</tittle>
</head>
<body>
<header>
<h1>Yusuf Akviran</h1>
<h2>Computer Engineer</h2>
</header>
<section>
<p>Gallery will go here.</p>
</section>
<footer>
<p>© 2015 Yusuf Akviran.</p>
</footer>
</body>
</html>
İ don't understand where is my mistake. Thanks for helping!
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<tittle>Yusuf Akviran | Computer Engineer</tittle>
</head>
<body>
<header>
<h1>Yusuf Akviran</h1>
<h2>Computer Engineer</h2>
</header>
<section>
<p>Gallery will go here.</p>
</section>
<footer>
<p>© 2015 Yusuf Akviran.</p>
</footer>
</body>
</html>
1 Answer

Rich Bagley
25,868 PointsHi Yusuf,
You appear to have an extra t in title
on this line:
<tittle>Yusuf Akviran | Computer Engineer</tittle>
Try:
<title>Yusuf Akviran | Computer Engineer</title>
Hope that helps :)
-Rich

Yusuf Akviran
2,668 PointsThank so much it helped! I made a small mistake thanks for sharing me! I have just started new html!

Rich Bagley
25,868 PointsNo problem! Glad you got sorted :)
-Rich
Rich Bagley
25,868 PointsRich Bagley
25,868 PointsI have just updated your question with markdown to display the code a little clearer.
This post should help explain in case you need to use it in future :)
-Rich