Build an HTML Video Player - Step 11

Tell us what’s happening:

O código diz que seu segundo elemento source tem que ter um atributo src. solícito a correção.

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Working with the HTML Video Element</title>
</head>
<body>
  <h1>Working with the HTML Video Element</h1>
  <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"
    >

<!-- User Editable Region -->

<source></source>
<video controls>
  <source src="link-do-primeiro-video.mp4" type="video/mp4">
<source src="https://cdn.freecodecamp.org/curriculum/labs/mapmethod.webm">type<"video/webm">
</video>

<!-- User Editable Region -->

  </video>
</body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36

Challenge Information:

Build an HTML Video Player - Step 11

Were you asked to add another video element?

Hi buddy See here the type element should be added like this ?

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