Show Output
<!DOCTYPE html> <html lang="en"> <head> <title>Example of HTML audio Tag with Alternate Sources</title> </head> <body> <audio controls="controls"> <source src="/examples/audio/birds.mp3" type="audio/mpeg"> <source src="/examples/audio/birds.ogg" type="audio/ogg"> Your browser does not support the HTML5 audio element. </audio> </body> </html>