-
Notifications
You must be signed in to change notification settings - Fork 0
/
openPdfPPT.html
29 lines (24 loc) · 912 Bytes
/
openPdfPPT.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!-- pdf_viewer.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PDF Viewer</title>
<!-- Include PDF.js viewer stylesheet -->
<link rel="stylesheet" href="https://mozilla.github.io/pdf.js/web/viewer.css">
</head>
<body>
<!-- Container for the PDF viewer -->
<!-- <div id="viewerContainer"> -->
<iframe id="pdfViewer" width="100%" height="100%" src="SMTP PPT.pdf"></iframe>
<!-- </div> -->
<script>
// Include PDF.js library
// The workerSrc property should be specified to the location of the worker file
pdfjsLib.GlobalWorkerOptions.workerSrc = 'https://mozilla.github.io/pdf.js/build/pdf.worker.js';
</script>
<!-- Include PDF.js viewer script -->
<script src="https://mozilla.github.io/pdf.js/web/viewer.js"></script>
</body>
</html>