This is the source code from the HTML5 Tutorial For Beginners. In this source code, you are going to learn about HTML 5 – Audio Element Attributes.
Source Code:
<!DOCTYPE html> <html> <head> <title>iframe</title> <meta charset="UTF-8"> </head> <body> <audio controls autoplay loop> <source src="./audio/test.mp3" type="audio/mpeg"> <source src="./audio/test.mp3" type="audio/ogg"> Audio file is not supported. </body> </html>