Where is the problem in this fragment?
<audio> <source src="melody.midi" type="audio/midi"> </audio>
The "midi" format is not supported by the <audio> tag.
<audio>
The controls attribute is missing in the <audio> tag.
controls
The <audio> tag cannot contain a <source> tag.
<source>
You must use src instead of source.
src
source