1<!DOCTYPE html>
2<html>
3 <head>
4 <title>Title of the document</title>
5 </head>
6 <body>
7 <h1>PDF Example with iframe</h1>
8
9
10 <iframe src="link/to/your.pdf" width="100%" height="500px">
11 </iframe>
12
13
14 </body>
15</html>
16
17<!-- insta: @hardcode_studios -->
1<iframe
2 src="https://drive.google.com/viewerng/viewer?embedded=true&url=http://infolab.stanford.edu/pub/papers/google.pdf#toolbar=0&scrollbar=0"
3 frameBorder="0"
4 scrolling="auto"
5 height="100%"
6 width="100%"
7></iframe>
8