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 JavaScript Basics (Retired) Introducing JavaScript Link to an External Script

ive tried every suggestion

I ve tried every suggestion. no luck

index.html
<!DOCTYPE HTML>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <title>JavaScript Basics</title>
<body>
  <script src="shout.js"> <script> // alert ("I DID IT");>

      </body>
    <html>
shout.js

1 Answer

1) For task 1 enter the following:

<!DOCTYPE HTML>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <title>JavaScript Basics</title>
</head>
<body>
<script src="shout.js"></script>
</body>
</html>

2) Click 'Check Work' then do not edit anything in this code again

3) For task 2 click on the shout.js tab. This tab is at the top just to the right of the index.html tab. (Up until this point your shout file has been blank.) It looks like this

4) Here enter exactly the following:

alert('I DID IT!')

5) Click 'Check Work'