Build an HTML Audio and Video Player - Build an HTML Audio and Video Player

Tell us what’s happening:

I have insert different youtube link in video element and it is not showing

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>
    CHESS Audio and Video Lab
  </title>
</head>
<body>
<h1>
CHESS Audio & Video Lab
</h1>
<section>
  <h2>
  How to play chess for beginner's
    </h2>
  <video 
  src="https://www.youtube.com/embed/OCSbzArwB10"
  width="640" 
  controls>
  <source src="video.ogg"" type="video/ogg" ></source>
  </video>
</section>
<section>
  <h2>
Music 
  </h2>
    <audio controls loop src="https://cdn.freecodecamp.org/curriculum/js-music-player/we-are-going-to-make-it.mp3" type="mp3"></audio>
</section>
</body>
</html>

Your browser information:

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

Challenge Information:

Build an HTML Audio and Video Player - Build an HTML Audio and Video Player

It looks like you have two different sources for video?