I am trying to display PDF document inline in my HTML. However, all the methods I know of shows me empty content area.
Please check an example here : http://codepen.io/abhishekisnot/pen/WxmPmd/?editors=1001
So far I tried using all the methods below:
<object data="http://www.pro-react.com/materials/appendixA.pdf" type="application/pdf" width="100%" height="100%" style="border: 1px solid red;"></object>
<embed src="http://www.pro-react.com/materials/appendixA.pdf" width="100%" height="100%" type='application/pdf' style="border: 1px solid red;">
<iframe src="http://www.pro-react.com/materials/appendixA.pdf" width="100%" height="100%" style=" border: 1px solid red;" frameborder="0"></iframe>