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.

Richard Duntley
241 PointsI 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"
4 Answers

Kevin Korte
28,135 PointsPosting 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
29,275 PointsRemember to put it between the head tags.

Kham Sanvoravong
7,277 PointsBetween 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>

Víctor Castro
3,743 Pointsinto head:
<head>
<title>Smells Like Bakin' Cupcake Company</title>
</head>
It should works ;)
James Barnett
39,199 PointsJames Barnett
39,199 PointsOnline writing in ALL caps is considered equivalent to yelling, please don't do that on the forum.