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

JavaScript Introduction to Programming Basics Writing Your Program

Carlos Belnap
Carlos Belnap
4,564 Points

How do I import my .html and .js files to the browser editor? No display on console, either.

'''html, js <!DOCTYPE html> <html lang="en"> <head> <title> Intro to Programming </title> <style> html { background: +FAFAFA; font-family: sans-serif; } </style> <script src="myscript.js"></script> </head> <body> <h1>Intro to Programming</h1> <h2>with JavaScript</h2> </body> </html> SyntaxError: Unexpected token < '''

1 Answer

geoffrey
geoffrey
28,736 Points

Either you save your file locally, and then you launch your .html with the javascript included or in a separated file (thus linked in a script tag). Or you can as well use the workspaces treehouse gives at your disposal, see the icon on the left in the navbar, or simply click this link => http://teamtreehouse.com/workspaces and then click the new button to start a new workspace.