Build a Product Landing Page, help with <video>

i am having trouble with the

Your code so far

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36.

Link to the challenge:

If you are trying to embed a video form youtube into your website, the easiest way to do it would be to right click on the video and select the ‘Copy embed code’ option, then just paste the copied code into where you want the video element to be in the html code. Below is an example of what a copied embed code looks like.

<iframe width="853" height="480" src="https://www.youtube.com/embed/PmmQjLqJQlY" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>

After you paste the copied snippet into your html code, you can play around with the parameters like width and height to see which values suit the best on your webpage.
Hope this helps you.

I alredy tried with the iframe and it works fine. But the test wants a tag and not

It should work. Were is your code?
Perhaps you didn’t add the id=“video” tag in the div?

I think that was the problem. thanks for replying.