Put YouTube Video in Webpage

1. In the YouTube page, below the video click on "Share"

2. To get the video URL, select and copy the text in the URL field.

3. To embed the video in your own webpage, click on "Embed"

4. Select and copy the text in the field that appears below the "Embed" button.

 

5. Using an HTML editor, paste the code within the a webpage's <body> tags as shown in bold below:

<html>

<head>
<title>YouTube Video</title>
</head>

<body>
<iframe width="560" height="315" src="http://www.youtube.com/embed/awr8eW9rZGc" frameborder="0" allowfullscreen></iframe>
</body>

</html>