HTML how to add youtube Video

Let us add youtube video  using HTML.

  • When you go you tube and click the Share button, the HTML code used to embed a link that video is displayed directly below it, however that’s not what we are after–we want to directly embed the video into the page. We do that by clicking the Embed button which is displayed directly below the Link URL.
  • Once you click the Embed button, you will see the HTML code for embedding the video.
  • copy html code and put your html page.see below code.

Below is the code for html file.

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”&gt;
<html xmlns=”http://www.w3.org/1999/xhtml”&gt;
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />
<title>Untitled Document</title>
</head>

<body>

<!DOCTYPE html>
<html>
<body>


</body>
</html>

</body>
</html>

Leave a comment