How To View Google Drive Pdf Link In Iframe
I need to view pdf file embed with google drive link and view link in iframe. I have tried following code:
Solution 2:
This works:
<iframe src="https://drive.google.com/file/d/(your file id)/preview?usp=embed_googleplus" style="border: 0; top: 0; left: 0; width: 640; height: 700; position: absolute;" allowfullscreen></iframe>
Solution 3:
You can use like this
<iframe src="https://docs.google.com/file/d/(your file id)/preview"></iframe>
Post a Comment for "How To View Google Drive Pdf Link In Iframe"