I have this code to embed an audio file on Internet Explorer 11.
<audio controls>
<source src="Nature.mp3" type="audio/mpeg"/>
<embed src="Nature.mp3" type="audio/mpeg">
</audio>
The audio works fine, but Internet Explorer 11 includes a black box above the audio. I assume it to represent the video that was loaded from the audio file, but I didn't put a video in. All I want is the audio without the video box. How do I do that?