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

Beginning my Html basics , But my preview page will not change.

I'm typing the code as instructed but when i refresh the page nothing changes like its supposed to. I'm wondering if its because im using a chromebook ?

4 Answers

If you could you share some of your code I can help you out. Shouldn't be any issues with your chrome book as all you need for HTML/CSS is a text editor.

<Style> h1 { color: green:

}

</style>

<h1>Nick Petitt</h1>

wow it keeps cutting off my code i don't get it i type it in one way and it shows up cut off and re arranged , annoying

Yeah it's quite tough to help without the code, just make sure you're saving the file in your text editor and then you're refreshing the page. Or create a very simple page like follows, save it and load it in the browser and then change the h1 test and then save and check again. It should work.

<!DOCTYPE html>
<html>
<head>My Test Page</head>
<body><h1>Change me!</h1></body>
</html>