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 trialTravis 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 ;)