<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Strait">
<div class="container" style="font-family: 'Strait', sans-serif;">
<div class="row">
<h2>Play sound mp3 audio</h2>
<audio id="myAudio">
<source src="https://www.w3schools.com/html/horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<button id="playBtn" class="btn btn-primary btn-lg" style="margin-right:10px" ><span class="glyphicon glyphicon-play"></span> Oynat</button>
<button id="pauseBtn" class="btn btn-danger btn-lg " ><span class="glyphicon glyphicon-pause"></span> Durdur</button>
</div>
</div>