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 How to Make a Website Adding Pages to a Website Add a New Page

formatting/red lines errors

I have tried upgrading my computer and multiple css checkers to no avail can someone please tell me if something is off with my coding? and what a parsing error is? because to the best of my knowledge i have followed what has been shown thus far but anyhow here is a link to my workspace : https://teamtreehouse.com/workspaces/16551202# and my website that doesnt show the changes i made to it at least not to me ?: http://port-80-pjp1p19nch.treehouse-app.com/

I greatly appreciate anyone who can help me resolve this

thank you,

olivia

2 Answers

Rick Buffington
Rick Buffington
8,146 Points

Your workspace is no longer available, but I did browse to your site and noticed 2 types in the code.

Your styles from the main.css file are not showing because you have a typo in the word "stylesheet"

<link rel="style sheet" href="css/main.css"> 

SHOULD BE (no space between style and sheet):

<link rel="stylesheet" href="css/main.css">

After fixing that typo, your site looked appropriate. The other typo I noticed is in your header section with the first A tag.

<a href="index" .html" id="logo">

SHOULD BE:

<a href="index.html" id="logo">

Hopefully that gets you on the right track.

thank you!!!!