如何在您的网页上添加背景音乐?

要在网页上添加背景音乐,请使用<embed>…</ embed>元素。另外,使用自动播放属性。每当页面加载时,它将在后台运行音乐。

以播放器隐藏在网页上的方式设置宽度和高度。添加了loop属性以指定是否重新开始播放音频。将音乐文件添加到服务器,并在src属性中提及链接。

示例

您可以尝试运行以下代码将背景音乐添加到您的网页:

<!DOCTYPE html>
<html>
   <head>
      <title>HTML background music</title>
   </head>
   <body>
      <p>The music is running in the background.</p>
      <p>(Song: Kalimba which is provided as a Sample Music in Windows)</p>
      <embed src="/html/Kalimba.mp3" loop="true" autostart="true" width="2" height="0">
   </body>
</html>