When you put a audio
on your web page, it does not start automatically. To start sounding the audio you can use the autoplay
attribute:
<td height="380" colspan="3" valign="middle" class="bb">
<audio src="noticias/entrevista_radio_14feb2017.mp3" autoplay></audio>
</td>
Or you can use JavaScript with the play
method of the audio:
<td height="380" colspan="3" valign="middle" class="bb">
<audio src="noticias/entrevista_radio_14feb2017.mp3" id="miAudio"></audio>
</td>
<script>
document.getElementById("miAudio").play();
</script>
Note: the audio should not start on its own, it is something that is not recommended because it can give a bad user experience, and should be avoided.
If after using one of these two options, the audio is still not working, this may happen because the audio file format is not correct. You can see a list of formats and codecs supported by audio
and video
in this MDN page .