Are there browser integrated notifications sound(beep, click, etc), that one can play in html?

773 Views Asked by At

Are there integrated sounds into the browser(Chrome, Edge, FF, etc), just as they are for fonts, that one can use to play notification sounds, such as beeps and so on??

Not something as https://base64.guru/developers/html/audio or How to play a notification sound on websites?

function playSound(url) {
  const audio = new Audio(url);
  audio.play();
}
<button onclick="playSound('https://your-file.mp3');">Play</button>

Thanks

0

There are 0 best solutions below