Where is the error in the following code?
<audio plays> <source src="track.ogg" type="audio/ogg"> </audio>
The "audio/ogg" type is incorrect.
The <audio> tag cannot contain a <source> tag.
<audio>
<source>
"track.ogg" is not a valid source for <audio>.
The attribute should be controls instead of plays.
controls
plays