What is the error in the following fragment?
<audio> <source src="cancion.mp3" type="audio/mp4"> </audio>
The <audio> tag does not have the controls attribute.
<audio>
controls
The ".mp3" extension does not match the "audio/mp4" type.
The <source> tag cannot be inside <audio>.
<source>
The file "cancion.mp3" is not valid for <audio>.