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

title tag problem

My exercise is asking me to Add a title tag to the head of the document, containing the content "Smells Like Bakin' Cupcake Company".

I recheck my work and get back Bummer make sure you use a title tag.

I believe I am using a title tag can some one help?

<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>Smells Like Bakin' Cupcake Company</title> </head> <body> <img src="web/img/logo.gif" alt="Smells Like Bakin"> <ul class="nav"> <li><a href="#"> About</a></li> <li><a href="#">Cupcakes & Prices<a></li> <li><a href="#">Locations</a></li> <li class"last"><a href="#">Contact Us<a/></Li> </ul> </body> </html>

1 Answer

Dane Bostick
PLUS
Dane Bostick
Courses Plus Student 14,307 Points

```<!DOCTYPE HTML> <head> <title>This is your title</title> </head> <body> </body> </html>

When posting you can look at the Markdown Cheatsheet at the bottom of the input box. This cheatsheet shows markdown you can use when posting code. if you put three of this character --> ` <-- together before and after the code, it will make your code easier to read.