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 Beginning HTML and CSS Write an HTML Element

My practice index.html page wont respond to my typing

I can make practice files, but now I have about 3 extra files and no index,html. Plus I cant find away to delete these pages

Ryan Gibbs
Ryan Gibbs
212 Points

What are the names of the "extra" files? Are you developing locally? What are you trying to delete?

4 Answers

Thank you everyone, I found my way around my issues, but I am sure you will be hearing from me again. Cathryn

Omer Asadullah
Omer Asadullah
10,415 Points

Your question is not clear.

Dani Ivanov
Dani Ivanov
10,732 Points

To delete page in workspace you should Right Click with your mouse and choose delete from the menu. (just like in windows).

Carson Clark
Carson Clark
2,159 Points

Try this: Create a new folder on your desktop. Then, create a new file in that folder and give it the ".html" extension. Now, set up a very basic HTML template and open that file with your internet browser and see if that displays your page.

You can use the following template if you're not sure what to write:

<!DOCTYPE html>
<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>