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 Your First JavaScript Program

Abz Man
Abz Man
6,702 Points

I do not understand how to do this part?

what do I do exactly?

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

<body>
</body>

< SCRIPT document.write>
// ("Welcome to my site");

</SCRIPT doucment.write>
// ("welcome to my site");
</html>

1 Answer

Jeremy Lapine
Jeremy Lapine
15,247 Points

You placed document.write in the wrong place. When they said to place it in the <script> tag they meant in between the opening and closing script tag, not inside the tag itself.

<script>
  document.write('Welcome to my site');
</script>

Adding something inside the tag itself should be reserved for attributes of that tag, like if you wanted to link to an external JavaScript file. Example:

<script src="external-file.js"></script>

I hope that helps.

Abz Man
Abz Man
6,702 Points

OHHHH, I understand now. thank you very much.