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

CSS CSS Basics (2014) Enhancing the Design With CSS Web Fonts with @font-face

Felipe Xavier
Felipe Xavier
2,378 Points

Webpage not loading

When I try to visualize the webpage it does not load. I get the following at the address bar: http://port-80-tz3em8f6o9.treehouse-app.com/

Can anyone assist me with this?

Thanks a lot

Jonathan Romine
Jonathan Romine
9,344 Points

Try using a different Browser

Close your page and open again.

1 Answer

jessicawynn2
jessicawynn2
7,971 Points

I had the same issue but I scrolled down and realized that the rest of the page loaded just not the main header. I actually added an extra comma that caused the header to just be a white screen. Maybe this happened to you.

My mistake:

background: linear-gradient(#ffa949, transparent, 90%),
              linear-gradient(0deg, #fff,transparent), 
              #ffa949 url('../img/mountains.jpg') no```

**Corrected:**

```CSS 
background: linear-gradient(#ffa949, transparent 90%),
              linear-gradient(0deg, #fff,transparent), 
              #ffa949 url('../img/mountains.jpg') no```