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 trialCarmen Vasquez
82 Pointscan'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
<!doctype html>
<html>
<head>
<link href="styles.css" rel="stylesheet">
</head>
<body>
<h1>Welcome to My Web Page!</h1>
</body>
</html>
h1 {
color: blue;
}
4 Answers
Justin Cantley
18,068 PointsAre 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
18,068 PointsWell 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
4,272 PointsYou 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
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>
Carmen Vasquez
82 Pointslogged 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.
Carmen Vasquez
82 PointsThank you for your help Justin and Mario. I was using IE and once I switched to Chrome, everything started working again. Thank you!