[html]
<script>
// Массив с названиями песен
let playlist = [
'https://forumstatic.ru/files/001b/df/d1/37095.mp3',
'treck2.mp3',
'treck3.mp3',
'treck4.mp3',
];
// Событие перед загрузкой страницы
window.onload = function() {
treck = 0; // Присваиваем переменной ноль
}
</script>
<style>
.audio-track {
width: 150px;
height: 3px;
background-color: #dddddd;
margin: 20px 0
}
.time {
width: 0;
height: 3px;
background-color: #474747
}
</style>
<audio>
<source src="https://forumstatic.ru/files/001b/df/d1/37095.mp3" type="audio/mpeg">
</audio>
<div id="controls">
<div class="audio-track"><div class="time"></div></div>
<button class="prev">prev</button>
<button class="play">Play</button>
<button class="pause">Pause</button>
<button class="next">next</button>
</div>[/html]