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 trialPaul Je
4,435 PointsNot sure how to do this
I haven't taken HTML formally as of yet (done a teensy bit on Codeacademy) so this may be why I have no idea what to do here lol, could someone show me how for now? Will go through it piece by piece later !
<html>
<head>
<title>Star Wars Merchandise</title>
<meta charset="utf-8">
</head>
<body>
<p>Star Wars Merchandise</p>
<p>Boba Fett Shirts</p>
<meta charset="Shirts and hats for fans of Star Wars">
<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>
3 Answers
Kevin Korte
28,149 PointsMeta tags always go in the head, and you would use this format to create a meta description tag.
Jay Padzensky
4,731 PointsIt looks like you've already completed the first task, nice work!
The second task requires you to add a meta description. Remember your meta tags will be nested in your <head> element. Check out this link for some assistance in where to place the meta description and how to label it. Keep it up!
Paul Je
4,435 PointsThanks guys!! Helped a lot