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.

Travis G
8,384 PointsWhat's wrong with this code?
So I'm suppose to add the <title> tag nested in the <head> tag, and to me it seems like I did just did that. Am I missing something?
<html>
<head>
<meta charset="utf-8">
<title>Star Wars Merchadise</title>
</head>
<body>
<p>Star Wars Merchandise</p>
<p>Boba Fett Shirts</p>
<p>Available in white; sizes S-M-L-XL</p>
<p>Darth Maul Hat</p>
<p>Available in black or white at <a href="http://hats.com">Hats.com</a></p>
</body>
</html>
2 Answers

Jay Wellings
4,593 Pointsyour code is fine, but you mis-spelled "Star Wars Merchandise" :)

Mark Cuda
6,428 PointsI'm not sure which tag you're referring to since the code looks correct to me.
The only thing I notice is that you didn't declare the DOCTYPE at the top of the page
On the line before the first <html> tag (line 1) there should be the following tag.
<!DOCTYPE html>
Travis G
8,384 PointsTravis G
8,384 PointsAhh okay that's embarrassing, thanks though.
Mark Cuda
6,428 PointsMark Cuda
6,428 PointsThat's ok. At Hollywood Studios in Disney, they have a store called "youse guise moichendice", and nobody seems to mind ;)