Comments on f2u . guilt by association All Comments

hi im having trouble with the playlist part, do i need to put the right link of the song? or do i need to put the link somewhere else?
the song is https://www.youtube.com/watch?v=Ypmes7XisTg

<!-- MUSIC PLAYER -->
<div id="playlist" class="carousel slide" data-interval="900000">
<div class="carousel-inner">

<!-- SONG 1 -->
<div class="carousel-item active">
<div class="justify-content-between mx-3" style="overflow:hidden">
<span><iframe class="flex-fill" style="height:1em; width:1em; opacity:0; position:absolute; margin-top:5.5px; z-index:1;" frameborder="0" allow="accelerometer; encrypted-media; gyroscope; picture-in-picture" allowfullscreen src="https://www.youtube.com/watch?v=Ypmes7XisTg"></iframe>
<a href=""><i class="fas fa-play"></i></a> <a href="#playlist" role="button" data-slide="next"><i class="fas fa-step-forward"></i></a></span>
<span style="font-size: 100%">TITLE <span class="text-muted">- ARTIST</span></span>
</div>
</div>
<!-- SONG 2 -->
<div class="carousel-item">
<div class="justify-content-between mx-3" style="overflow:hidden">
<span><iframe class="flex-fill" style="height:1em; width:1em; opacity:0; position:absolute; margin-top:5.5px; z-index:1;" frameborder="0" allow="accelerometer; encrypted-media; gyroscope; picture-in-picture" allowfullscreen src="https://www.youtube.com/watch?v=Ypmes7XisTg"></iframe>
<a href=""><i class="fas fa-play"></i></a> <a href="#playlist" role="button" data-slide="next"><i class="fas fa-step-forward"></i></a></span>
<span style="font-size: 100%">TITLE <span class="text-muted">- ARTIST</span>
<i class="fas fa-exclamation-triangle fa-xs text-warning tooltipster" title="Explicit Content"></i></span>
</span>
</div>
</div>

like it mentions at the top of the code in the notes, what you'll need to take and replace is actually the video id (the "Ypmes7XisTg" in "https://www.youtube.com/watch?v=Ypmes7XisTg" in this case), not the entire link ! this is because it needs to be an embed link, not a link to the original video page - the link you'll want to have here is https://www.youtube.com/embed/Ypmes7XisTg ! replacing the link you have in the code with this should work c:

Ohh ok, it worked now! tysm!