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