when I display a pdf
file in iframe
, I want the toolbar to be displayed, but it does not have download
and print
options, please guide me.
Finally, I want to have the toolbar, but without download and print options
<!DOCTYPE html>
<html lang="en">
<body style="margin: 0px; padding: 0px; overflow: hidden">
<iframe src="https://www.africau.edu/images/default/sample.pdf"
style="
overflow: hidden;
overflow-x: hidden;
overflow-y: hidden;
height: 100%;
width: 100%;
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
"
width="100%" height="100%" type='application/pdf' >
</body>
</html>