TEST PAGE

This is a paragraph! Here's how you make a link: Neocities.

// Song Index let index = 0; // Elements const music = document.querySelector('#player'); const song = document.querySelector('#song'); let current = document.querySelector('.current'); // Array Song Path const playlist = [ 'https://www.soundhelix.com/examples/mp3/SoundHelix-Song-1.mp3', 'https://www.soundhelix.com/examples/mp3/SoundHelix-Song-2.mp3', 'https://www.soundhelix.com/examples/mp3/SoundHelix-Song-3.mp3', ]; // set src song.src = playlist[index]; player.load(); player.play(); current.innerHTML = playlist[index] // Play Next song when song end player.addEventListener('ended', () => { index += 1; console.log(`Next Song:${playlist[index]}`); // Check Playlist end index == playlist.length ? (index = 0) : ''; // change src song.src = playlist[index]; // Play song player.load(); player.play(); current.innerHTML = playlist[index] });
Song Path

Here's how you can make bold and italic text.

Here's how you can add an image:

Here's how to make a list:

To learn more HTML/CSS, check out these tutorials!