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!
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

Aaron Peasley
1,411 PointsSimple HTML template for the Intro to Programming course
For my lessons in Introduction to Programming, I need a simple HTML for google chrome that I can plug my programs into and run them in the browser. If someone could give me one, that would be great.
4 Answers

James Barnett
39,199 PointsI'd suggest you use jsbin.com instead of a basic webpage
But if you really want to use a basic HTML file:
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>My JavaScript Playground</title>
<meta name="Description" content="My JavaScript Playground">
<meta charset="UTF-8">
<script type="text/javascript">
/* JavaScript goes here */
</script>
</head>
<body>
<!-- HTML Goes here -->
</body>
</html>

Neil Mountford
635 PointsYou could check out jsFiddle. It's a browser based html, css and javascript editor that lets you see the output from your code live. It also lets you save/share them too :)
Edit: The url is http://jsfiddle.net/

Aaron Peasley
1,411 PointsWell, I was thinking of more like a simple copy and paste type deal. I have a program that will run the HTML, but I need a basic HTML to run.

Paul Dunahoo
5,390 PointsI highly suggest that you get a text editor like Treehouse recommends, instead of a browser solution. If you ever change your mind and decide to get a text editor, I can recommend Sublime Text 2.