Construye un Reproductor de Video HTML

Working with the HTML Video Element

Working with the HTML Video Element

<video

width="640"

loop

controls

muted

poster="https://cdn.freecodecamp.org/curriculum/labs/past-event2.jpg"
<source

  src="https://cdn.freecodecamp.org/curriculum/labs/what-is-the-map-method-and-how-does-it-work.mp4"

  type="video/mp4"

>

<source

  src="https://cdn.freecodecamp.org/curriculum/labs/mapmethod.webm"

  type="video/webm"

>

<source

  src="https://cdn.freecodecamp.org/curriculum/labs/mapmethod.ogg"

  type="video/ogg"

>

<source src="https://cdn.freecodecamp.org/curriculum/labs/mapmethod.mov" type="video/quicktime"

>

Welcome to the forum @blackbear1994,

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

Happy coding

1 Like

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.