« Back to the Programming/Coding/Developing Forum

what am i doing wrong here? (◡︵◡✿) (idk if this is the right place for this)

I'm trying to add music to my space hey profile but its not working. (◡︵◡✿)

This is the code.

<iframe width="1" height="1" src="https://www.youtube.com/watch?v=jqL8EzcY3s8&ab//?&;amp;;autoplay=1&;loop=1"&playlist=jqL8EzcY3s8&ab;/jqL8EzcY3s8&ab//?&;amp;;autoplay=1&;loop=1&;controls=1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" loading="lazy">


Report Topic

1 Reply

Reply by ChiefBromden

posted

The iframe tag is wrong:

<iframe

It should be:

<iframe>

And also, you have to close it at the end:

... loading="lazy"></iframe>


Permalink Report Reply