-
Notifications
You must be signed in to change notification settings - Fork 0
/
pdf.html
55 lines (50 loc) · 1.61 KB
/
pdf.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title class="topLevelTitle"></title>
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700,200" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body id="pdf">
<div class="row">
<div class="col-12">
<h1 class="username"></h1>
</div>
<div class="col-12">
<p class="address"></p>
</div>
<div class="col-6">
<p class="mail"></p>
</div>
<div class="col-6">
<p class="mobileNumber"></p>
</div>
<div class="col-12">
<a class="linkedIn"></a>
</div>
<div class="col-12">
<h1>Summary</h1>
<p class="about"></p>
</div>
<div class="col-12">
<h1>Skills</h1>
<ul class="skill">
</ul>
</div>
<div class="col-12">
<h1>Education</h1>
<ul class="education"></ul>
</div>
</div>
<!-- download as pdf button -->
<div class="buttonHolder">
<button href="#" id="gpdf" onclick="makePDF()" class="button tick">Save as PDF</button>
</div>
<!-- <script src="assets/js/jsPDF.js"></script>
<script src="assets/js/site.js"></script> -->
</body>
</html>