I am trying to make audio auto-play (without mute) on my website index page for Halloween effect. Tried all tricks given in the internet and Stack. Everything fails. But I found in W3Schools, tried on its page and it's working with auto-play. I am curious how it is working only on that website.
I used the same code:
<audio controls autoplay>
<source src="horse.ogg" type="audio/ogg">
<source src="https://www.soundhelix.com/examples/mp3/SoundHelix-Song-1.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
But not working for me in my site!
There source to check autoplay : here
How is it working for them and not for me?