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 trialSarah Pellecchia
Courses Plus Student 2,335 PointsI get task one right, then when I do task two it keeps saying task one is no longing passing.
.
<!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="bikeLock" alt="bikeLock">
<!--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>
2 Answers
Steven Parker
231,236 PointsTask 2 tells you to change the button image.
But it looks like you changed the Car image from task 1 again instead.
Alexander Davison
65,469 PointsThe challenge didn't ask you to edit the img
that you just edited on the first task. It was asking you to edit a different img
.
Try this:
<!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/bike.png" class="car" alt="car">
<!--Button-->
<a href="javascript:startCar();"><img src="images/bikeLock.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>
I hope this helps. ~Alex
Don't forget to mark this as a Best Answer if it answered your question! Thanks!
Alexander Davison
65,469 PointsAlexander Davison
65,469 PointsOMG answered at the same time again!!
Sarah Pellecchia
Courses Plus Student 2,335 PointsSarah Pellecchia
Courses Plus Student 2,335 Pointsthank you!