What is the problem in the following code snippet?
<audio controls> <source src="song.mp3"> </audio>
The type attribute is missing in the <source> tag.
type
<source>
There is no problem.
The controls attribute must have a value.
controls
The <audio> tag cannot contain a <source> tag.
<audio>