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

Simon Peter Mulima
Simon Peter Mulima
2,655 Points

I am getting a bummer error. when I input the details for "welcome to my first site"

It say you didnt write " welcome to my first site" where did i go wrong?

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>
// Write your code here.
document.write("<h1>Welcome to my first site</h1>")
</script>

</html>

2 Answers

Hi Simon

You are close, just get rid of the h1 tags and make sure that you write "Welcome to my site", not "Welcome to my first site" and close it with a ";":

<script>
// Write your code here.
document.write("Welcome to my site");
</script>
Simon Peter Mulima
Simon Peter Mulima
2,655 Points

Thanks, I have now gat it right!! I hope Teamtreehouse will take me to a higher level

Nathan Williams
seal-mask
.a{fill-rule:evenodd;}techdegree
Nathan Williams
Python Web Development Techdegree Student 6,851 Points

It wants you to write "Welcome to my site", and it is very particular about matching the exact wording, capitalization, and only writing what was instructed.

Simon Peter Mulima
Simon Peter Mulima
2,655 Points

Thanks, I have now gat it right!! I hope Teamtreehouse will take me to a higher level