Created
May 31, 2020 08:30
-
-
Save anmolsukki/b6478bc56fd6ec7e24faac83214fb2ad to your computer and use it in GitHub Desktop.
[HTML] PDF Preview
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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