Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Embed a PowerPoint presentation into HTML

Is it possible to embed a PowerPoint presentation (.ppt) into a webpage (.xhtml)?

This will be used on a local intranet where there is a mix of Internet Explorer 6 and Internet Explorer 7 only, so no need to consider other browsers.


I've given up... I guess Flash is the way forward.

like image 252
GateKiller Avatar asked Sep 02 '08 15:09

GateKiller


People also ask

How do I turn a PowerPoint into a link?

To do that, Right click on the Presentation and click on Share. Click on Get Link. In the Choose an option drop down select View Only and then click on Create Link.


1 Answers

Google Docs can serve up PowerPoint (and PDF) documents in it's document viewer. You don't have to sign up for Google Docs, just upload it to your website, and call it from your page:

<iframe src="//docs.google.com/gview?url=https://www.yourwebsite.com/powerpoint.ppt&embedded=true" style="width:600px; height:500px;" frameborder="0"></iframe> 
like image 58
Steve Pasetti Avatar answered Oct 02 '22 00:10

Steve Pasetti