How to add a YouTube Video to your Website?


To add a YouTube Video to your website, you need to embed it. 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.

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 −

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

Live Demo

<!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>

Updated on: 16-Jun-2020

558 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements