Computer >> Computer tutorials >  >> Programming >> HTML

How to embed a video using HTML code?


To embed a video in an HTML page, use the <iframe> element. The source attribute included the video URL. For the dimensions of the video player, set the width and height of the video appropriately.

How to embed a video using HTML code?

The Video URL is the video embed link. The video we will be embedding our example will be YouTube.


To get the embed link, go to a YouTube Video and click embed as shown below. You will get a link fro embed here −

How to embed a video using HTML code?

You can try to run the following code to learn how to embed a video using HTML code. Copy the embed link as shown above and add it to the HTML document

Example

<!DOCTYPE html>
<html>
   <head>
      <title>HTML Video embed</title>
   </head>
   <body>
      <p>Learn Eclipse</p>
      <br />
      <iframe width="560" height="315" src="https://www.youtube.com/embed/y881t8ilMyc" frameborder="0" allowfullscreen></iframe>
      </iframe>
   </body>
</html>