Hi, can somebody help me.
13. Inside the second section element, you should have an h2 element for the title of the song playing.
Failed:15. Below the h2 element, you should have an audio element.
Failed:16. The audio element should have a controls attribute.
Failed:17. The audio element should have a loop attribute.
Failed:18. The audio element should have a src attribute pointing to an audio file.
Your source tag needs to be a separate HTML element nested inside the video element, not written as part of the opening video tag. That’s what the tests are checking.
Also take another look at your document structure. In your code, the section elements appear outside the body, which makes the HTML invalid and can lead to unexpected behavior.
For the audio portion, carefully reread the user stories. Notice that the requirements for audio and video are not identical, so avoid assuming they should be implemented the same way.
Once you separate the source element correctly and fix the document structure, the related tests should pass.
It seems the most consistent issue here is incomplete HTML elements.
Remember that all HTML elements, except void elements, require both an opening tag and a closing tag. You are missing closing tags for both section elements, the video element, and the audio element.