I wish to display a pdf in a simple webpage. Unfortunately each page has a different size and I can't control it beforehand. So I was thinking of splitting the pdf page by page, zoom to fit screen, and then implement infinity scrolling to continue reading the other pages.
So far, I have used iframe to zoom to fit the entire pdf, but am unable to do so for each page. I am an amateur when it comes to HTML, and this is just a small part of the entire application, so I don't want to devote too much time solving this. I would be very grateful, if you could help me solve his problem.
<iframe src="C:/Users/User/Documents/Sample.pdf#page=3" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0;"></iframe>