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 trialRandy Burleson
527 PointsClosing </html> tag is red and not sure why.
I'm currently going through the HTML videos and have everything the same from what I can see. My closing </html> tag is red. When I take the / out of the closing tag everything works. Not sure if anyone has any insight.
Here is a snapshot. https://w.trhou.se/fw2goxdweo
1 Answer
Kenneth Patterson
Front End Web Development Techdegree Student 6,086 PointsRandy,
I noticed that Line 5 is missing the closing angle bracket:
Is:
<link rel="stylesheet" href="resume.css"
Should be:
<link rel="stylesheet" href="resume.css">
Does that fix your problem?