View PDF in HTML

24 February, 2020
Back

I created a page for my resume that view's in PDF inside HTML.

The thing about banks is, almost all banks prevent <iframe> tags from working because they are vulnerable to code injection and cross-site scripting. <iframe> tags are used to embed content from another source, like Youtube, on your own page.

So I used <object> tags instead. Old and deprecated, but they still work for me.


Back