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