I want to display the contents of a Word file in html without installing office. How can i display files like .docs
or .xlsx
on my page?
How can i show a preview of files like pdf, docx, txt, etc. in another page of the browser? Can i do this by just using html?
<object data="testdoc.docx" type="application/word" width="400" height="300" ></object>
<iframe src="testdoc.docx"></iframe>