html - Embedd ppt file in Iframe -


is correct? or there way it? can u please me code? aim display ppt file onto frame when click link.

<html> <head> <style type="text/css"> ul li{        font-size: 11px;        list-style: none;       } ul li a{         text-decoration: none; } </style> </head>  <body bgcolor="lightgray">   <ul>      <li><a href="http://docs.google.com/gview?  url=wbste/ppt/smime.pptx&embedded=true" target="disiframe"><font   face="lucida sans" color="black" >s/mime</font></a></li><br>    </ul>  </body> </html> 

make sure define iframe, src iframe page source

<iframe name="disiframe" src="target.html"></iframe> 

here's working example

<body>      <a href="http://www.wikipedia.org/" target="myiframe">link text</a>      <iframe src="http://en.wikipedia.org/" name = "myiframe"></iframe>  </body>


Comments

Popular posts from this blog

node.js - How to mock a third-party api calls in the backend -

node.js - Why do I get "SOCKS connection failed. Connection not allowed by ruleset" for some .onion sites? -

matlab - 0-by-1 sym - What do I need to change in order to get proper symbolic results? -