play sound html code example

Example 1: play a sound wiith js

var audio = new Audio('audio.mp3');
  audio.play();

Example 2: javascript play audio

//play audio with from html audio element: 
document.getElementById('myAudioTagID').play();

//play audio with out html audio tag
var myAudio = new Audio('my_great_song.mp3');
myAudio.play();

Example 3: how do you play audio files on html

<audio src="sound.mp3" autoplay></audio>

Example 4: html sound

<audio controls>
  <source src="horse.ogg" type="audio/ogg">
  <source src="horse.mp3" type="audio/mpeg">
  Your browser does not support the audio tag.
</audio>

Tags:

Html Example