I'd like to know a way to put music running in the background when the site page loads automatically without the user having to use a player for the song to start, I looked in the W3School documentation and the example quoted there is the code below:
<audio controls>
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
I would like it to be automatically when I load the page the song starts playing.