-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (27 loc) · 996 Bytes
/
index.html
File metadata and controls
29 lines (27 loc) · 996 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Browser Based PDF Viewer</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="top-bar">
<button class="btn" id="prev-page">
<i class="fas fa-arrow-alt-circle-left"></i> Prev Page
</button>
<span class="page-info">
Page <span id="page-num"></span> of <span id="page-count"></span>
</span>
<button class="btn" id="next-page">
Next Page <i class="fas fa-arrow-alt-circle-right"></i>
</button>
</div>
<canvas id="pdf-render"></canvas>
<script src="//mozilla.github.io/pdf.js/build/pdf.js"></script>
<script src="https://kit.fontawesome.com/e2504ed527.js" crossorigin="anonymous"></script>
<script src="./js/main.js"></script>
</body>
</html>