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 Introduction to HTML and CSS (2016) Getting Familiar with HTML and CSS Test: Changing the Look of a Web Page

can't move past the challenge

requested to change paragraph tag to h1 tag. I did that but I can't move forward. communication problem is what I am getting as an error

index.html
<!doctype html>
<html>
  <head>
    <link href="styles.css" rel="stylesheet">
  </head>
  <body>

    <h1>Welcome to My Web Page!</h1>

  </body>
</html>
styles.css
h1 {
  color: blue;
}

4 Answers

Justin Cantley
Justin Cantley
18,068 Points

Are you still having issues with this? You're answer appears to be correct. I think it may be an issue with the treehouse server.

Justin Cantley
Justin Cantley
18,068 Points

Well I don't know what the problem is, but the code you submitted is definitely correct. I tried it myself and passed the challenge.

Mario de Wolf
Mario de Wolf
4,272 Points

You can better stick with Chrome is used by most developers and there are some very handy tools build in Chrome like Developer Tools and more.

Mario de Wolf
Mario de Wolf
4,272 Points

<!DOCTYPE html> <html> <head> <link href="styles.css" rel="stylesheet" type="text/css"> </head> <body> <h1>Welcome to My Web Page!</h1> </body> </html>

logged back in and resumed. Took me back to the challenge I was on. Answered it and got the same "Oh no!" message about a communication problem.

Thank you for your help Justin and Mario. I was using IE and once I switched to Chrome, everything started working again. Thank you!