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

Stuck on challenge 6

Footer tag? I have placed the header and section tags within the body. Then the <footer></footer> tag below but it still fails? any pointers. As below

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <header> </header> <section> </section> <footer> </footer> </body> </html>

Thanks Rob

2 Answers

Hi Rob,

Looking at your code a couple of things appear to be missing.

I would suggest adding the head tags and html tags like below

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>


<header> </header>
<section> </section>
<footer> </footer>

</html>

hope this helps :-)

Jonathan Grieve
Jonathan Grieve
Treehouse Moderator 91,254 Points

They were in there, Samuel but now showing up because markdown wasn't used like you have it which makes it all the more puzzling. I would suggest there's another tag maybe the article tag needed before it? :-)

Either the way there's nothing technically wrong with the code. :-)

Thanks for the quick response, it appears i missed some of the code when i copied and pasted

;)

Jonathan Grieve
Jonathan Grieve
Treehouse Moderator 91,254 Points

Put your code in some markdown like this

'''html
code goes here '''

Where the ' are three backticks `

Or check out the Markdown Cheatsheet It'll all show up then. :-)

Ok thanks, i have now completed the challenge successfully. :-)