HTML5 Nuts & Bolts  Click to Play 

Click the image below to play the sound

The body section
<body>
<audio src="2.mp3" id="sound1"></audio>
<script>
var playIT = document.getElementById("sound1");
</script>
<div> Click the image below to play the sound<br>
<img src="images/Multimedia.png" onclick="playIT.play();">
</body>