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

Abdulrahman Mousa
Abdulrahman Mousa
2,276 Points

java scripts question the first quiz 2nd task

in java scripts first quiz/challange/question its saying me to change the button image to "images/bikeLock.png" when i am doing it it says its wrong what should i do now please help me i have been trying this from 20 minutes

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>

4 Answers

Richard Lambert
PLUS
Richard Lambert
Courses Plus Student 7,180 Points

Hi Khaled,

The task asks that you change the image source of the button to images/bikeLock.png. You seem to have altered the image source of the vehicle to this instead and added an unnecessary period in the process. Hope this helps.

<!--Car image -->
<img src="images/bikeLock.png". class="car" alt="car"> 
Steven Parker
Steven Parker
229,708 Points

You're changing the wrong image.

For task 2, the challenge asks you to change the button image (which is currently of a key), but the one you changed is the image of the car, which you had already changed to a bike in task 1.

Abdulrahman Mousa
Abdulrahman Mousa
2,276 Points

thanks guys soo the answer is in line 20 not 16