+ 1
How can i add background music without show any controls and music autoplay??
3 odpowiedzi
+ 5
Add attribute unvisible
+ 4
In js:
var audio = document.createElement ("audio");
audio.src = "URL. mp3";
audio.play ();
Don't think it too difficult. Just reply me if any difficulty. Nothing to do in HTML then.
+ 1
Not working your code