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 trial

HTML

I need help on this challenge...PLEASE!

I KNOW THIS IS EXTREMELY SIMPLE...BUT WHEN I TYPE IN THE EXACT THING THE INSTRUCTOR DID, IT DOESN'T WORK?!

Add a title tag to the head of the document containing the content "Smells Like Bakin' Cupcake Company"

James Barnett
James Barnett
39,199 Points

Online writing in ALL caps is considered equivalent to yelling, please don't do that on the forum.

4 Answers

Kevin Korte
Kevin Korte
28,148 Points

Posting a snippet of code here, or your entire code onto Codepen, and than passing us the link here will help you.

It sounds you know what title tags are, and the html, head, and body tags.

Chase Lee
Chase Lee
29,275 Points

Remember to put it between the head tags.

Between your head tag, there should be a title tag like below: (You don't need the quotation marks unless you want those to show up too)

<!DOCTYPE html> <html> <head> <title>Title of the document</title> </head> <body> The content of the document. </body> </html>

into head:

<head>
   <title>Smells Like Bakin' Cupcake Company</title>
</head>

It should works ;)