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 Treehouse Club: JavaScript Car Sounds Editing Your HTML

what is going on???!!

I'm lost!??!

index.html
<!DOCTYPE html>
<html lang="en">

  <head>
  <meta name="charset" value="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=0.5, maximum-scale=0.5, minimal-ui">
    <title>Car Sounds</title>

    <!--Style Sheet link-->
    <link rel="stylesheet" type="text/css" href="css/style.css">
  </head>

  <body>

    <!--Car image -->
    <img src="images/bikeLock.png" class="car" alt="car">


    <!--Button-->
    <a href="javascript:startCar();"><img src="images/key.png" alt="key"></a>


    <!--Audio Files-->
    <audio id="startCar" src="sounds/startCarA.mp3" preload="auto"></audio>


    <!--Javascript-->
    <script type="text/javascript">
        function startCar() {
            document.getElementById('startCar').play();
        }

    </script>

  </body>

</html>
Allison Hanna
Allison Hanna
36,222 Points

Hi, can you be more specific? What problems are you having?

2 Answers

Manish Giri
Manish Giri
16,266 Points

You changed the image in the wrong place. You have been asked to make 2 changes (challenge task 1 and 2). The first one requires you to change the car image to bike.png, you can easily find this image element with the comment "car image" on top of it. Here you've changed the image to "bikeLock.png", which is why it won't pass.

After you complete this task 1, the next step is to change the "button" element image to bikeLock.png, which is now key.png.

Follow the instructions.

thank u Manish i solve it thanks 2 ur help