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

Stage 2 "Text Editors and HTML" Challenge task 1of4

I've been communicating with an individual named Elizabeth via email for the past 3 days and that's unfortunately gotten me no where.

http://teamtreehouse.com/library/build-a-simple-website/text-editors-and-html/images-and-lists

None of the challenges will process my answers... My formulas are not the issue I know those I correct.

Please help sooner than later.

4 Answers

If you are asking about the first task then all you do is add the title tag along with the requested content before the close of the head tag.

Blake Webster
Blake Webster
5,901 Points

Joseph Joy I just went through that quiz and was able to complete it with 100% accuracy. Which of the questions are giving you trouble? Can you possible post what you are typing into the code box so that we can take a look and find out what the issue may be?

Add a title tag between the head tags. Write the text they request, Smells Like Bakin' Cupcake Company. Exclude the quotations marks shown in the question.

Have you tried clearing your cache? this can sometimes fix problems with the editor not accepting your answer.

I have gone back through and been able to complete the challenge, I used the following code:

<!DOCTYPE HTML>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>Smells Like Bakin' Cupcake Company</title>
  </head>

  <body>

  </body>
</html>

Hope this helps!