-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·603 lines (538 loc) · 23.5 KB
/
index.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
<!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 name="description" content="">
<meta name="author" content="">
<title>Resume - Start Bootstrap Theme</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="https://fonts.googleapis.com/css?family=Saira+Extra+Condensed:500,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Muli:400,400i,800,800i" rel="stylesheet">
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet">
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- Custom styles for this template -->
<link href="css/resume.min.css" rel="stylesheet">
</head>
<body id="page-top">
<nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top" id="sideNav">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<span class="d-block d-lg-none">Biplov Kumar</span>
<span class="d-none d-lg-block">
<img class="img-fluid img-profile rounded-circle mx-auto mb-2" src="img/profile.jpg" alt="">
</span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#experience">Experience</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#education">Education</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#skills">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#technologies">Technologies</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#interests">Interests</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#awards">Awards</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#resume">Resume</a>
</li>
</ul>
</div>
</nav>
<div class="container-fluid p-0">
<section class="resume-section p-3 p-lg-5 d-flex d-column" id="about">
<div class="my-auto">
<h1 class="mb-0">Biplov
<span class="text-primary">Kumar</span>
</h1>
<div class="subheading mb-5">D-5, opp. Metro Station, Sector 59, Noida, Uttar Pradesh 201301· (+91) 9835773216 ·
<a target="_blank" href="mailto:[email protected]">[email protected]</a>
</div>
<p class="lead mb-5"> Senior Software Engineer with nearly 7 years of extensive experience in iOS and Android
development. Demonstrated expertise in React Native, React JS, Firebase, JavaScript, TypeScript, Next JS,
Java, Android, Realm DB, API Integration, and Espresso Testing. Proven track record of delivering high-impact
projects across diverse sectors including Healthcare, Finance, Tourism, CRM, and Education. Adept at
leveraging Photoshop for design tasks, ensuring a seamless blend of functionality and aesthetics. Renowned for
exceptional problem-solving skills and a commitment to excellence in every project.</p>
<div class="social-icons">
<a target="_blank" href="https://www.linkedin.com/in/biplov-kumar-34a30b105/">
<i class="fab fa-linkedin-in" title="Linked In"></i>
</a>
<a target="_blank" href="https://github.com/Biplovkumar">
<i class="fab fa-github" title="Github"></i>
</a>
<a target="_blank" href="https://gitlab.com/Biplov1401">
<i class="fab fa-gitlab" title="GitLab"></i>
</a>
<a target="_blank" href="https://www.instagram.com/biplovkumar.kumar/">
<i class="fab fa-instagram" title="Instagram"></i>
</a>
<a target="_blank" href="https://www.youtube.com/@ViralVibes247YT">
<i class="fab fa-youtube" title="Youtube"></i>
</a>
<li class="list-inline-item">
<a target="_blank" href="https://www.facebook.com/biplovkumar.kumar">
<i class="fab fa-facebook-f" title="Facebook"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://www.nagarro.com/en">
<i class="far fa-building" title="Job (Nagarro Pvt Ltd.)"></i>
</a>
</li>
</div>
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="experience">
<div class="my-auto">
<h2 class="mb-5">Experience</h2>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Sr. Software Engineer</h3>
<div class="subheading mb-3">Nagarro Software Pvt. Ltd.</div>
<p>Senior Software Engineer proficient in selecting appropriate programming languages, platforms, and
architectures to
create, develop, test, improve, and maintain software efficiently.
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">12 July 2022 - Present</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Senior Software Engineer</h3>
<div class="subheading mb-3">QSS Technosoft Pvt. Ltd.</div>
<p>Responsible for requirement understanding, analysis and functionalities development using tech stacks
React Native, JavaScript, Firebase etc as well as bug fixing.
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">19 Oct 2020 - 08 July 2022</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Senior Software Engineer (Team Leader)</h3>
<div class="subheading mb-3">Tech9logy Creators Pvt. Ltd.</div>
<p>Experienced software engineer skilled in optimizing product quality through Cross Browser Testing and
developing robust
Test Cases with Espresso, Selenium, and Jenkins, enhancing DevOps efficiency and user engagement.
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">01 Feb 2019 -17 Oct 2020</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Android & React Native Developer</h3>
<div class="subheading mb-3">Algofocus Pvt. ltd. </div>
<p>Podcasting operational change management inside of workflows to establish a framework. Taking seamless
key performance indicators offline to maximise the long tail. Keeping your eye on the ball while
performing a deep dive on the start-up mentality to derive convergence on cross-platform integration.</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">9 Jan / 1 Jul 2018 - 31 Jan 2019</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row">
<div class="resume-content mr-auto">
<h3 class="mb-0">Mobile Developer Intern</h3>
<div class="subheading mb-3">Tech9Apps Pvt. Ltd</div>
<p>Implementing operational change management within workflows, I establish a structured framework for
podcasting. I
seamlessly transition key performance indicators offline to leverage extended benefits, ensuring focus on
core
objectives while deeply integrating startup mentality for cross-platform convergence.</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">August 2017 - December 2017</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row">
<div class="resume-content mr-auto">
<h3 class="mb-0">Android Developer trainee</h3>
<div class="subheading mb-3">Cetpa Infotech Pvt. Ltd.</div>
<p>As a learner with a steep –specific management, student may be restricted to their ongoing area of
specialization. This not only restrains student hazard to the industry, but also limits their personal
growth. CETPA conduct expanded training for learners and introduce them to leading edge technology as
well as new training technique.</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">June 2016 - August 2016</span>
</div>
</div>
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="education">
<div class="my-auto">
<h2 class="mb-5">Education</h2>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Guru Gobind Singh Indraprastha University (GGSIPU)</h3>
<div class="subheading mb-3">Master of Computer Applications</div>
<div>Computer Science </div>
<p>GPA: 8.60</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">August 2015 - July 2018</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row">
<div class="resume-content mr-auto">
<h3 class="mb-0">Dr. Zakir Husain Institute</h3>
<div class="subheading mb-3">Bachelors in Computer Application</div>
<div>Computer Science </div>
<p>GPA: 6.40</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">August 2010 - May 2014</span>
</div>
</div>
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="skills">
<div class="my-auto">
<h2 class="mb-3">Skills</h2>
<div class="subheading mb-3"></div>
<ul>
<li>Mobile Application Development</li>
<li>Stores Purchase / Deployment (Play Store and App Store)</li>
<li>Responsive Design</li>
<li>Reusable Code</li>
<li>Component Separation</li>
<li>CI/CD (Continuous Integration / Continuous Deployment)</li>
<li>Firebase</li>
<li>Agile Methodologies</li>
<li>Project Management</li>
<li>Debugging and Troubleshooting</li>
<li>Code Review and Quality Assurance</li>
</ul>
</div>
<div class="subheading mb-3">Workflow</div>
<ul class="fa-ul mb-0">
<li>
<i class="fa-li fa fa-check"></i>
React Native Developer
</li>
<li>
<i class="fa-li fa fa-check"></i>
Android Development & Scrum
</li>
<li>
<i class="fa-li fa fa-check"></i>
IOS Development & Scrum
</li>
<li>
<i class="fa-li fa fa-check"></i>
Mobile-First, Responsive Design
</li>
<li>
<i class="fa-li fa fa-check"></i>
Cross Browser Testing & Debugging
</li>
</ul>
</section>
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="technologies">
<div class="my-auto">
<h2 class="mb-3">Technologies</h2>
<ul>
<li>React Native</li>
<li>Android Application Development</li>
<li>iOS Development</li>
<li>Hybrid App Development</li>
<li>Core Java</li>
<li>JavaScript</li>
<li>HTML</li>
<li>CSS</li>
<li>JSON</li>
<li>Redux</li>
<li>React.js</li>
<li>REST</li>
<li>Node.js</li>
<li>Typescript</li>
</ul>
</div>
<div class="my-auto mt-3">
<div class="subheading mt-4">Tools</div>
<ul class="list-inline dev-icons">
<li class="list-inline-item">
<i class="fab fa-android" title="Android Studio"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-apple" title="Xcode"></i>
</li>
<li class="list-inline-item">
<i class="fas fa-vial" title="Postman"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-git-alt" title="Git"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-jira" title="Jira"></i>
</li>
<li class="list-inline-item">
<i class="fas fa-fire" title="Firebase"></i>
</li>
<li class="list-inline-item">
<i class="fas fa-code" title="Visual Studio Code"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-js" title="WebStorm"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-github" title="Github"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-gitlab" title="GitLab"></i>
</li>
</ul>
<div class="subheading mt-4">Programming Languages</div>
<ul class="list-inline dev-icons">
<li class="list-inline-item">
<i class="fab fa-java" title="Core Java"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-android" title="Android Development"></i>
</li>
<li class="list-inline-item">
<i class="fas fa-vials" title="Testing"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-js-square" title="JavaScript"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-react" title="React Native"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-npm" title="NPM"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-html5" title="HTML"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-css3-alt" title="CSS"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-node-js" title="Node.js"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-wordpress" title="WordPress"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-apple" title="iOS Development"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-bootstrap" title="Bootstrap"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-sass" title="Sass"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-docker" title="Docker"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-aws" title="AWS"></i>
</li>
</ul>
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="interests">
<div class="my-auto">
<h2 class="mb-5">Interests</h2>
<p>Apart from being a Mobile developer, I enjoy most of my time being outdoors. In the winter, I am an avid
skier
and novice ice climber. During the warmer months in Manali, I enjoy mountain biking, free climbing,
and kayaking.</p>
<p class="mb-0">When forced indoors, I follow a number of sci-fi and fantasy genre movies and television shows,
I am an aspiring chef, and I spend a large amount of my free time exploring the latest technology
advancements in the
<a style="color: #3B3BA2" target="_blank"
href="https://drive.google.com/file/d/1I-7ivm90gRtfJVUe9kuFTBkpMH-AupWr/view?usp=sharing">front-end</a>
<a style="color: #3B3BA2" target="_blank"
href="https://drive.google.com/file/d/1ncFYKBh6_5SNzm4qvCeG9x1Km0NwZ_JE/view?usp=sharing">Mobile</a>
<a style="color: #3B3BA2" target="_blank"
href="https://drive.google.com/file/d/1yiedWcFCAsDBI_MdgygCDzughF9RS2Ij/view?usp=sharing"> development </a>
<a style="color: #3B3BA2" target="_blank"
href="https://drive.google.com/file/d/11Xpi9GFC1J3UNnkRFNhzNJO7Et9mx6fh/view?usp=sharing">world.</a>
</p>
<div class="subheading mb-3 mt-5"></div>
<h3 class="mb-0">PERSONAL INFORMATION</h3>
<div class="subheading mb-3"></div>
• Birthday:14/01/1992
<br>
• Marital Status:Single
<br>
• Gender:Male
<br>
• Nationality:Indian
<br>
• Family: Maa, Papa, Sis & Me
<br>
• <a style="color: #3B3BA2" target="_blank"
href="https://drive.google.com/file/d/1ld7x1vl0cIZeJbQRLWIjpZsmsI25jBFn/view?usp=sharing">BioData</a>
<br>
• Residential Address: Near Sudha Dairy, BabhanLai, Lai, Bihta, Patna, Bihar (801112)
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="awards">
<div class="my-auto">
<h2 class="mb-5">Awards & Certifications</h2>
<ul class="fa-ul mb-0">
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
<B>Customer kudos</B> award by Tech9logy Creators
</li>
<li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
<B>Team Leader</B> of mobile S/W development team Certified by Tech9logy Creators
</li>
<li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
Android Developer Certified by Cetpa Infotec pvt ltd
</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
Mobile (ReactNative) Developer Certified by AlgoFocus pvt ltd
</li>
<li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
22-Months Job in Qss Technosoft pvt ltd
</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
Developed an <a style="color: #3B3BA2" target="_blank" href="https://www.idigizen.com/">app</a> for
Education in QSS and got
award. Implemented CCEvenue Payment Gateway.
</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
Developed an <a style="color: #3B3BA2" target="_blank"
href="https://apps.apple.com/in/app/hydrogen-business/id6450107845">IOS app</a> and <a
style="color: #3B3BA2" target="_blank"
href="https://play.google.com/store/apps/details?id=com.hydrogenpay.merchantportal">Android app</a> for
Paymenmt Portal in <B>Nagarro</B> and got award.
</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
13-Months Job in AlgoFocus pvt ltd
</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
4-months internship in Tech9Apps
</li>
<li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
Got privileges & more than 12 Badges from <B>Stack Overflow.</B>
</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
Got more than 15 Badges from <B>Expo forum</B>.
</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
I regularly give answers to <B>GitHub</B> repository issues.
</li>
<li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
Summer Training on Core Java And Android from Cetpa Infotec pvt ltd
</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
Coordinator in Alumni meet & Manthan Event in College
</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
Post Graduate (MCA) by 83% from GGSIPU (Vips College,Delhi)
</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
1<sup>st</sup>
Place -Live Project on "Phishing Attack" and "DDOS Attack" (VIPS College)
</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
1<sup>st</sup>
Place - Research Paper on "Infinity Venue" & "Docker Technology" (VIPS College)
</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
5<sup>th</sup>
Place - Paper Presentation on Infinity Venue in CSI Event at national level
</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
6<sup>th</sup>
Place - Submitting an Idea for ʹSmart India Hackathon 2017ʹunder Ministry of Railways
</li>
<li>
<i class="fa-li fa fa-trophy text-warning"></i>
3<sup>rd</sup>
Place - Submitting an Idea for ʹSmart India Hackathon 2017ʹunder Ministry of Civil Aviation
</li>
</ul>
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="resume">
<div class="my-auto">
<h2 class="mb-5">Resume </h2>
</div>
<div>
<object data="img/Biplov Kumar Resume.pdf" type="application/pdf" width="100%" height="800">
</object>
</div>
<hr class="m-1">
<div class="resume-date text-md-right">
<tr>
<td align="center" style="border-radius: 3px; width:100%;">
<a target="_blank" href="https://drive.google.com/file/d/10rekNeXnGH5vADtQsvYjb_0ZQTDj40Cm" style="font-size:12px;
font-family: 'Quicksand', sans-serif; text-decoration: none;
color: #5e5e5e; font-weight:700; padding: 10px 10px; border-radius: 4px;
border: 1px solid #f8da60; display: inline-block; background-color:#f8da60;" bgcolor="#f8da60">Download CV</a>
</td>
</tr>
</div>
</section>
<!-- https://drive.google.com/open?id=1I-7ivm90gRtfJVUe9kuFTBkpMH-AupWr -->
<!-- https://drive.google.com/file/d/10rekNeXnGH5vADtQsvYjb_0ZQTDj40Cm/view?usp=sharing -->
</div>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Plugin JavaScript -->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Custom scripts for this template -->
<script src="js/resume.min.js"></script>
</body>
</html>