Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

เราจะฝังเสียงในหน้าเว็บใน HTML5 ได้อย่างไร


ใช้แท็ก

ตัวอย่าง

<!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>