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 trialJayson Santos
574 PointsIm not good in terminoloy, how about this? lol
Im trying to but..
<!DOCTYPE html>
<head></head>
2 Answers
Steven Parker
231,198 PointsIt looks like you're on task 2.
The instructions say, "Create the HTML element that will serve as the document root." You did create an element, but instead of "html", you wrote "head".
When you get to task 3, remember that the new elements go inside the html
tags.
Jayson Santos
574 PointsHi. Preview in workplace is not working. I dont know what seems to be wrong. I just add the color on the footer and when i Preview it its no longer working. it gives me blank page saying http://port-80-rfi1errhw6.treehouse-app.com/
Can you please help me out on this?
stjarnan
Front End Web Development Techdegree Graduate 56,488 PointsHi Jayson
You have misplaced your code. In your head tags, you have placed a style container containing all your body code. You need to remove all of that code as it should not be there.
<head></head>
<body>Your content goes here (divs etc)</body>
Not like this:
<head><body>Content here</body></head>
<body></body
Hope that helps!
Steven Parker
231,198 PointsFYI: That's a direct URL to your workspace, it's temporary and only exists while you are using it.
When sharing a workspace, always use the snapshot function in the workspace and provide the link to that instead.
stjarnan
Front End Web Development Techdegree Graduate 56,488 Pointsstjarnan
Front End Web Development Techdegree Graduate 56,488 PointsHi Jayson!
I hope that helps!