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>