Skip to content

Instantly share code, notes, and snippets.

@anmolsukki
Created May 31, 2020 08:30
Show Gist options
  • Save anmolsukki/b6478bc56fd6ec7e24faac83214fb2ad to your computer and use it in GitHub Desktop.
Save anmolsukki/b6478bc56fd6ec7e24faac83214fb2ad to your computer and use it in GitHub Desktop.
[HTML] PDF Preview
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PDF Preview</title>
</head>
<body>
<!-- Method 1 -->
<embed
src="http://www.africau.edu/images/default/sample.pdf"
width="800"
height="800"
/>
<!-- Method 2 -->
<iframe
src="http://www.africau.edu/images/default/sample.pdf"
width="100%"
height="1000"
id="iframe11"
>
</iframe>
<!-- Method 3 (Flow Paper) -->
<iframe
src="http://flowpaper.com/flipbook/http://conorlastowka.com/book/CitationNeededBook-Sample.pdf"
width="100%"
height="800"
title="1"
style="border: none;"
allowfullscreen
>
</iframe>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment