-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
125 lines (116 loc) · 5.77 KB
/
resume.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="description"
content="I believe I am a good learner and describe myself as a lifelong learner and implementer. Very keen to use my technical and managing skills as well as learning for the betterment of software industry by keeping mutual growth in mind. I have a good amount of corporate experience in software development and scripting which includes various web development projects in different technologies and frameworks like Django (Python), Laravel (PHP), Yii (PHP) and other frameworks like RASA (AI chatbot). - SWETANK SUBHAM .">
<meta name="keywords"
content="Swetank, Subham, Swetank Subham, HTML, CSS, JavaScript, Python, Python3, Learning, Info, Information, Contact, Education, Employement, Skills, Markdown, PHP, Go Lang, Go, Go Language, Django, RASA, Laravel, Yii2, MySQL, Linux, Training, Saturday, Sunday, opportunity">
<meta name="author" content="Swetank Subham">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://swetanksubham.com/">
<title>Swetank Subham</title>
<!-- MDB icon -->
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<!-- Font Awesome -->
<link rel="stylesheet" href="./static/vendor/fa/css/all.min.css" />
<link rel="stylesheet" href="./static/vendor/devicon-master/devicon.min.css" />
<!-- Google Fonts Roboto -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" />
<!-- MDB CSS-->
<link rel="stylesheet" href="./static/vendor/mdb/css/mdb.min.css" />
<!-- Custom styles -->
<link rel="stylesheet" href="./static/app/css/app.css">
<script type="text/javascript" src="./static/vendor/moment/moment-with-locales.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.4.0/jspdf.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/rasterizehtml/1.3.0/rasterizeHTML.allinone.js"></script>
</head>
<body>
<!--Main Navigation-->
<header>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-white fixed-top">
<div class="container">
<button class="navbar-toggler" type="button" data-mdb-toggle="collapse"
data-mdb-target="#top-nav" aria-controls="top-nav" aria-expanded="false"
aria-label="Toggle navigation">
<i class="fas fa-bars"></i>
</button>
<a class="navbar-brand" href="/">swetanksubham.com</a>
<div class="collapse navbar-collapse justify-content-center" id="top-nav">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item active">
<a class="nav-link" aria-current="page" href="#home"> Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#introduction"> Summary</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact"> About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#education"> Education</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#employement"> Employement</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#skills"> Skills</a>
</li>
</ul>
<ul class="navbar-nav flex-row">
<li class="nav-item me-3 me-lg-1">
<a class="nav-link d-sm-flex align-items-sm-center" target="_blank"
href="./static/media/doc/swetank_subham_resume.pdf" download="swetank_subham_resume">
<i class="fa fa-download"></i>
<strong class="d-none d-sm-block ms-1"> Resume</strong>
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Navbar -->
</header>
<!--Main Navigation-->
<!--Main layout-->
<main>
<section class="d-block fh" id="home">
<div class="container fh">
<div class="row">
<div class="col-md-12 fh d-flex align-items-center z-1" style="margin-top: 5rem;">
<div class="w-100" id="resume"></div>
</div>
</div>
</div>
</section>
</main>
<!--Main layout-->
<!--Footer-->
<footer>
</footer>
<!--Footer-->
<!-- MDB JavaScript -->
<script type="text/javascript" src="./static/vendor/mdb/js/mdb.min.js"></script>
<!-- Custom scripts -->
<script type="module" src="./static/app/js/app.js"></script>
<script type="text/javascript">
exportBtn = document.querySelector('body');
if (exportBtn) {
exportBtn.addEventListener('click', function(e) {
if (e.target.id === 'export') {
var pdf = new jsPDF();
var options = {
pagesplit: true
};
pdf.addHTML(document.querySelector('#resume'), 0, 0, options, function(){
pdf.save("test.pdf");
});
}
});
}
</script>
</body>
</html>