+ 1
Why this is not working? PLEASE TELL ME
See my code and tell me pls that why audio is not working??? :( See this https://code.sololearn.com/WRaK3us41mwU/?ref=app
2 Answers
+ 1
I have corrected and I have made this as proper code format
https://code.sololearn.com/WXcNTfsGOosE/#html
Change <audio autoplay loop> to <audio controls loop>
And remove canvas
ā This code is working ā
<!DOCTYPE html>
<html>
<head>
<title>Electro Waves</title>
</head>
<body>
<div>
<audio controls loop>
<source src="http://www.sololearn.com/uploads/audio.mp3" type="audio/mpeg">
</audio>
</div>
</body>
</html>
+ 1
Thank you