I was attempting to embed a .docx in a web page I attempted this
<iframe src="http://www.bing.com" style="width: 90%; height: 300px"></iframe>
Which is completely wrong by the reaction of my browser, any suggestions would be great.
Hi, Non-HTML content apart from images needs to be retrieved using an object, embed or iframe tag
Try following code
[LIST=1] [*] iframe: <iframe src="YourWordDocument.docx" style="width: 90%; height: 300px"></iframe> [*] object/embed: <object src="YourWordDocument.docx"><embed src="YourWordDocument.docx"></embed></object> [/LIST]
Thanks