Build an HTML Music Player - Step 9

Tell us what’s happening:

Hi, I need help with the freeCodeCamp HTML Music Player project.

I added the third song as instructed, but the tests still fail. I can’t figure out what’s wrong.

Scratching the Surface

Quincy Larson

What am I missing? Thanks! :folded_hands:

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Working with the HTML Audio Element</title>
</head>
<body>
  <h1>freeCodeCamp Tunes</h1>

  <h2>Can't Stay Down</h2>
  <p>Artist: Quincy Larson</p>
  
  <audio src="https://cdn.freecodecamp.org/curriculum/js-music-player/can't-stay-down.mp3" loop controls></audio>

  <h2>Cruising for a Musing</h2>
  <p>Artist: Quincy Larson</p>

  <audio src="https://cdn.freecodecamp.org/curriculum/js-music-player/cruising-for-a-musing.mp3" loop controls></audio>
<!-- User Editable Region -->
<h2>Scratching the Surface</h2>
<p>Quincy Larson</p>
<audio src="https://cdn.freecodecamp.org/curriculum/js-music-player/scratching-the-surface.mp3" controls></audio>
<!-- User Editable Region -->

</body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Mobile Safari/537.36

Challenge Information:

Build an HTML Music Player - Step 9

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/workshop-html-music-player/698c58745b73289bb6c89ece.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @doukalichaimaa5,

Does this line match the previous paragraphs for the artist?

And does your audio element contain the same attributes as previous audio elements?

Happy coding