Jump to content

How to Add YouTube Video to the SharePoint 2010 Site (SharePoint 2010)

From freem


To add a YouTube video to a SharePoint 2010 site, you can use the following steps:

1. Go to the YouTube video you want to embed in your SharePoint site and copy the video's URL.

2. Open your SharePoint site and navigate to the page where you want to add the video.

3. Edit the page and click on the "Insert" tab in the ribbon.

4. Click on the "Web Part" button and select the "Media and Content" category.

5. Choose the "Content Editor" web part and click "Add".

6. Click on the "Click here to add new content" link within the web part.

7. From the ribbon, click on the "Edit HTML Source" button.

8. Paste the YouTube video's URL into the HTML source code of the web part.

9. Modify the code so that it includes the "iframe" tags around the URL. For example:

``` <iframe width="560" height="315" src="https://www.youtube.com/embed/VIDEO_ID" frameborder="0" allowfullscreen></iframe> ```

Replace "VIDEO_ID" with the actual ID of the YouTube video you want to embed.

10. Click on "OK" to save the changes and exit the HTML editor.

11. Save the page and publish it to make the YouTube video visible to users.

That's it! The YouTube video should now be visible on your SharePoint site.