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
Santiago Lopez
3,446 PointsWhere can I run my code of HTML that is not in workspaces? Does HTML has it's own program?
Where?
4 Answers
Marcus Parsons
15,719 PointsHi Santiago,
You can run HTML in any browser! Workspaces is really just an editor and a server for some back end languages. So, if you put your HTML code into a text editor such as Notepad (on PC) or Text Edit/or similar plain text editor (on Mac) and then save the file with a ".html" extension, you can view it in any browser. You may have to right click on the file and select a similar option to "Open with" and select your browser. And then voila! HTML in the browser without Workspaces. =]
Santiago Lopez
3,446 PointsThanks, just to make sure, so HTML doesn't have it's own framework like ruby on rails?
Marcus Parsons
15,719 PointsHTML files are individual files by themselves unless they are part of a framework, but HTML itself does not have a framework like Ruby on Rails.
Santiago Lopez
3,446 PointsThank You (:
Marcus Parsons
15,719 PointsYou are most certainly welcome! If you want to check out some awesome IDEs for web development, check out Brackets, Aptana Studio, Notepad++, and there are a bunch more out there. These are just some of the most popular ones that have very neat features for development!
Collin Rittschof
4,231 PointsThey're interpreted by the browser. so in a sense you could say the browser is HTMLs framework.
Marcus Parsons
15,719 PointsIndeed!