Guest User

Untitled

a guest
Nov 23rd, 2020
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <!doctype html>
  2.  
  3. <html lang="en">
  4. <head>
  5. <meta charset="utf-8">
  6. <title>mp3</title>
  7.  
  8. </head>
  9.  
  10. <body>
  11. <button id="link_id">play</button>
  12. <audio controls id="linkAudio">
  13. <source src="plik.mp3" type="audio/mpeg">
  14. Your browser does not support the audio element.
  15. </audio>
  16.  
  17. <script>
  18. document.getElementById("link_id").addEventListener("click", function () {
  19. document.getElementById("linkAudio").play();
  20. });
  21. </script>
  22. </body>
  23. </html>
  24.  
Advertisement
Add Comment
Please, Sign In to add comment