<style>
#christmas {
display: block;
position: fixed;
top: 0;
left: 0;
cursor: pointer;
}
</style>
<script>
function soundClick() {
var audio = new Audio();
audio.src = 'http://www.csomsk.ru/csomsk/Jingle_bells.mp3';
audio.autoplay = true;
}
</script>