如何在 HTML5 网页中嵌入音频?
在 HTML5 中,使用 <audio> 标签可以向网页中嵌入音频。您可以尝试运行以下代码来实现 <audio> 标签 −
示例
<!DOCTYPE html> <html> <head> <title>HTML audio Tag</title> </head> <body> <p>Click on Play button...</p> <p>(Song: Kalimba which is provided as a Sample Music in Windows)</p> <audio controls> <source src = "/html/Kalimba.mp3" type = "audio/mpeg"> </audio> </body> </html>
广告