Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<body>
<audio id="player" controls="controls">
  <source src="http://www.w3schools.com/html5/song.ogg" type="audio/ogg" />
  <source src="http://www.w3schools.com/html5/song.mp3" type="audio/mp3" />
  Your browser does not support the audio element.
</audio>
  <div> 
<button onclick="document.getElementById('player').play()">Play</button> 
<button onclick="document.getElementById('player').pause()">Pause</button> 
<button onclick="document.getElementById('player').volume += 0.1">Vol+ </button> 
<button onclick="document.getElementById('player').volume -= 0.1">Vol- </button> 
</div>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers