-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (39 loc) · 1.4 KB
/
index.html
File metadata and controls
50 lines (39 loc) · 1.4 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>How transform HTML into PDF</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="tools">
<button id="btn-html2canvas">export PDF by using jspdf + html2canvas</button>
</div>
<div class="container">
<div id="content">
<div class="content-banner">
<img class="content-banner-logo" src="./image/logo.jpg" alt="logo">
<h2>How Transform HTML Into PDF</h2>
</div>
<div class="content-main">
<h3>Hello World!</h3>
<h3>Hello World!</h3>
<h3>Hello World!</h3>
<h3>Hello World!</h3>
<h3>Hello World!</h3>
<h3>Hello World!</h3>
<h3>Hello World!</h3>
<h3>Hello World!</h3>
<h3>Hello World!</h3>
<h3>Hello World!</h3>
<h3>Hello World!</h3>
<h3>Hello World!</h3>
<h3>Hello World!</h3>
</div>
</div>
</div>
<script src="./js/jspdf.debug.js"></script>
<script src="./js/html2canvas.js"></script>
<script src="./main.js"></script>
</body>
</html>