-
Notifications
You must be signed in to change notification settings - Fork 0
/
online_cv.html
928 lines (836 loc) · 54.8 KB
/
online_cv.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
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Joyonto Karmakar | Front-end Web Developer with 3 Years Experience | Expert in developing user experiences with HTML, CSS, JavaScript, and React | Explore my portfolio for innovative web projects.">
<meta name="keywords" content="HTML, CSS, Tailwind, Bootstrap, JavaScript, Vue js, Nuxt js, react, Next js, Front-end">
<meta name="author" content="Joyonto Karmakar">
<title>Joyonto Karmakar - Online CV</title>
<!--favicon-->
<link rel="shortcut icon" type="image/x-icon" href="img/favicon/favicon.png">
<!--google fonts-->
<link href="https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Changa&display=swap" rel="stylesheet">
<!--font awesome-->
<link rel="stylesheet" href="css/font-awesome/css/all.css">
<!--bootstrap css-->
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css">
<!--Owl Carousel css-->
<link rel="stylesheet" href="css/OwlCarousel/owl.carousel.min.css">
<link rel="stylesheet" href="css/OwlCarousel/owl.theme.default.min.css">
<!--responsive tabs-->
<link rel="stylesheet" href="css/responsiveTabs/responsive-tabs.css">
<!--Animate css-->
<link rel="stylesheet" href="css/Animate/Animate.css">
<!--External css-->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/personal_cv.css">
<!--responsive css-->
<link rel="stylesheet" href="css/responsive.css">
<!--contact form css-->
<link rel="stylesheet" href="css/contact-form/pure.css">
<link rel="stylesheet" href="css/contact-form/style.css">
<!-- Adsence Script here -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-2620589079331742"
crossorigin="anonymous"></script>
<!-- Start of Async Live chat Drift Code -->
<!--Start of Tawk.to Script-->
<script type="text/javascript">
var Tawk_API = Tawk_API || {}, Tawk_LoadStart = new Date();
(function () {
var s1 = document.createElement("script"), s0 = document.getElementsByTagName("script")[0];
s1.async = true;
s1.src = 'https://embed.tawk.to/6081c5195eb20e09cf35aa52/1f3tejrlv';
s1.charset = 'UTF-8';
s1.setAttribute('crossorigin', '*');
s0.parentNode.insertBefore(s1, s0);
})();
</script>
<!--End of Tawk.to Script-->
<!-- End of Async Drift Code -->
</head>
<body data-spy="scroll" data-target=".navbar" data-offset="62" oncontextmenu="return false">
<!--Header-->
<header class="cv_header">
<nav class="navbar cv_header fixed-top navbar-expand-md">
<div class="container-fluid">
<div class="navbar-header">
<!--mobile nav open btn-->
<span id="mobile-nav-open-btn">☰</span>
<!--navbar logo-->
<a class="navbar-brand smooth-scroll" href="index.html">
<img src="img/logo/logo.png" alt="logo">
</a>
</div>
<!--main manu-->
<div class="collapse navbar-collapse" id="navbarid">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="smooth-scroll nav-link" href="index.html#home">Home</a>
</li>
<li class="nav-item">
<a class="smooth-scroll nav-link" href="index.html#about">About</a>
</li>
<li class="nav-item">
<a class="smooth-scroll nav-link" href="#cv">CV</a>
</li>
<li class="nav-item">
<a class="smooth-scroll nav-link" href="index.html#service">Service</a>
</li>
<li class="nav-item">
<a class="smooth-scroll nav-link" href="index.html#skill">Skill</a>
</li>
<li class="nav-item">
<a class="smooth-scroll nav-link" href="index.html#portfolio">Project</a>
</li>
<li class="nav-item">
<a class="smooth-scroll nav-link" href="index.html#contact">Contact</a>
</li>
</ul>
</div>
<div id="mobile-nav">
<!--mobile nav close btn-->
<span id="mobile-nav-close-btn">×</span>
<div id="mobile-nav-content">
<ul class="navbar-nav">
<li class="nav-item">
<a class="smooth-scroll nav-link" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="smooth-scroll nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="smooth-scroll nav-link" href="#cv">CV</a>
</li>
<li class="nav-item">
<a class="smooth-scroll nav-link" href="#service">Service</a>
</li>
<li class="nav-item">
<a class="smooth-scroll nav-link" href="#skill">Skill</a>
</li>
<li class="nav-item">
<a class="smooth-scroll nav-link" href="#portfolio">Portfolio</a>
</li>
<li class="nav-item">
<a class="smooth-scroll nav-link" href="#resume">Resume</a>
</li>
<li class="nav-item">
<a class="smooth-scroll nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<!--Header Ends-->
<!-- Main Section Start -->
<section id="cv" class="main_cv_section">
<div class="container">
<div class="row mt-5">
<div class="col-lg-4 col-xl-4">
<div class="card-box text-center">
<img src="img/logo/professional.jpg" class="rounded-circle avatar-xl img-thumbnail"
alt="profile-image">
<h4 class="mb-0">Joyonto Karmakar</h4>
<p class="text-muted">@Frontend Web Developer</p>
<button type="button" onclick="window.location.href='https://github.com/Joyontokarmakar'"
class="btn btn-success btn-xs waves-effect mb-2 waves-light">Follow</button>
<button type="button" onclick="window.location.href='https://m.me/joyontostd'"
class="btn btn-danger btn-xs waves-effect mb-2 waves-light">Message</button>
<div class="text-left mt-3">
<h4 class="font-13 text-uppercase">About Me :</h4>
<p class="text-muted text-justify font-13 mb-3">I am Joyonto Karmakar. A frontend web developer. I can do
any kind of responsive website like Portfolio, E-commerce website, PSD to HTML, Sketch to
HTML, Figma to HTML, Wordpress Theme Customization.</p>
<p class="text-muted text-justify font-13 mb-3">I have professional experience in JavaScript
Framework(Vue JS ,Nuxt JS), JavaScript Library(React JS), Frontend toolkit(Tailwind Css,
Bootstrap, Css3), Html5,Javascript, ES6, JQuery, Sass, API Integration, CMS(Wordpress,
Shopify)!</p>
<p class="text-muted mb-2 font-13"><strong>Full Name :</strong> <span class="ml-2">Joyonto
Karmakar</span></p>
<p class="text-muted mb-2 font-13"><strong>Mobile :</strong><span class="ml-2"><a
class="mobilesOnly" href="tel:+880 1727244864">+880 1727244864</a></span></p>
<p class="text-muted mb-2 font-13"><strong>Email :</strong> <span class="ml-2 "><a
href="mailto:[email protected]">[email protected]</a></span>
</p>
<p class="text-muted mb-1 font-13"><strong>Location :</strong><span class="ml-2"><a
href="https://goo.gl/maps/teoYeFG32szkL8ee8">Dhaka,Bangladesh</a></span></p>
</div>
<ul class="social-list list-inline mt-3 mb-0">
<li class="list-inline-item">
<a href="https://fb.com/joyontostd"
class="social-list-item border-purple text-purple"><i
class="fab fa-facebook"></i></a>
</li>
<li class="list-inline-item">
<a href="mailto:[email protected]"
class="social-list-item border-danger text-danger"><i class="fab fa-google"></i></a>
</li>
<li class="list-inline-item">
<a href="https://github.com/Joyontokarmakar"
class="social-list-item border-info text-info"><i class="fab fa-github"></i></a>
</li>
<li class="list-inline-item">
<a href="tel:+880 1727244864"
class="social-list-item border-secondary text-secondary"><i
class="fas fa-phone-alt"></i></a>
</li>
</ul>
</div> <!-- end card-box -->
<div class="card-box">
<h4 class="header-title">Skills</h4>
<!-- <p class="mb-3">Everyone realizes why a new common language would be desirable</p> -->
<div class="row d-flex justify-content-center align-items-center">
<div class="col-md-6 text-center">
<h3>Frontend</h3>
</div>
</div>
<div class="row my-3">
<div class="col-md-3">
<img src="img/skills/vue.png" class="img-fluid skill_img" title="Vue js" alt="">
</div>
<div class="col-md-3">
<img src="img/skills/nuxt.png" class="img-fluid skill_img" title="Nuxt js" alt="">
</div>
<div class="col-md-3">
<img src="img/skills/reactjs.png" class="img-fluid skill_img" title="React js" alt="">
</div>
<div class="col-md-3">
<img src="img/skills/javascript.png" class="img-fluid skill_img" title="JavaScript"
alt="">
</div>
<div class="col-md-3">
<img src="img/skills/jquery.png" class="img-fluid skill_img" title="JQuery" alt="">
</div>
<div class="col-md-3">
<img src="img/skills/sass.png" class="img-fluid skill_img" title="Sass" alt="">
</div>
<div class="col-md-3">
<img src="img/skills/html5.png" class="img-fluid skill_img" title="HTML5" alt="">
</div>
<div class="col-md-3">
<img src="img/skills/css3.png" class="img-fluid skill_img" title="CSS3" alt="">
</div>
<div class="col-md-3">
<img src="img/skills/bootstrap5.png" class="img-fluid skill_img" title="Bootstrap5"
alt="">
</div>
<div class="col-md-3">
<img src="img/skills/tailwind_css.png" class="img-fluid skill_img" title="TailWind CSS"
alt="">
</div>
</div>
<div class="row d-flex justify-content-center align-items-center">
<div class="col-md-6 text-center">
<h3>Backend</h3>
</div>
</div>
<div class="row my-3">
<div class="col-md-3">
<img src="img/skills/nodejs.png" class="img-fluid skill_img" title="Node JS" alt="">
</div>
<div class="col-md-3">
<img src="img/skills/expressjs.png" class="img-fluid skill_img" title="Express JS"
alt="">
</div>
<div class="col-md-3">
<img src="img/skills/mongodb.png" class="img-fluid skill_img" title="Mongo DB" alt="">
</div>
<div class="col-md-3">
<img src="img/skills/api.png" class="img-fluid skill_img" title="API" alt="">
</div>
</div>
<div class="row d-flex justify-content-center align-items-center">
<div class="col-md-6 text-center">
<h3>Tools</h3>
</div>
</div>
<div class="row my-3">
<div class="col-md-3">
<img src="img/skills/firebase_logo.png" class="img-fluid skill_img" title="Firebase"
alt="">
</div>
<div class="col-md-3">
<img src="img/skills/heroku.png" class="img-fluid skill_img" title="Heroku App" alt="">
</div>
<div class="col-md-3">
<img src="img/skills/git_hub.png" class="img-fluid skill_img" title="Git Hub" alt="">
</div>
<div class="col-md-3">
<img src="img/skills/netlify.png" class="img-fluid skill_img" title="Netlify" alt="">
</div>
<div class="col-md-3">
<img src="img/skills/bitbucket.png" class="img-fluid skill_img" title="Bit Bucket"
alt="">
</div>
</div>
</div> <!-- end card-box-->
</div> <!-- end col-->
<div class="col-lg-8 col-xl-8">
<div class="card-box">
<ul class="nav nav-pills navtab-bg">
<li class="nav-item">
<a href="#about-me" data-toggle="tab" aria-expanded="true"
class="about_btn nav-link ml-0 active">
<i class="mdi mdi-face-profile mr-1"></i>About Me
</a>
</li>
<li class="nav-item">
<a href="Joyonto Karmakar's Resume.pdf" target="_blank" data-toggle="tab"
aria-expanded="true" class="about_btn nav-link ml-0 active">
<i class="mdi mdi-face-profile mr-1"></i>Download CV
</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane show active" id="about-me">
<h5 class="mb-4 text-uppercase"><i class="mdi mdi-briefcase mr-1"></i>
Experience</h5>
<ul class="list-unstyled timeline-sm">
<!-- Last Experience -->
<li class="timeline-sm-item">
<span class="timeline-sm-date">10/23 - Present</span>
<h5 class="mt-0 mb-1">Web Developer</h5>
<p><a href="https://therapbd.com/" class="experiance_link"
style="text-decoration:none;">Therap (BD) Ltd.</a></p>
<p class="text-muted text-justify mt-2">
As a web developer, I play a pivotal role in crafting immersive digital experiences. My responsibilities encompass
designing and building responsive, user-friendly websites that meet clients' objectives and engage their target
audiences effectively. I utilize a range of technologies, including HTML, CSS, JavaScript, and web development
frameworks (React js, Next js), to bring web designs to life. My passion for clean and efficient code ensures optimal
website performance and seamless user navigation. With a strong eye for design and a commitment to staying updated with
the latest industry trends, I create visually stunning and technically robust web solutions that leave a lasting impact.
</p>
</li>
<!-- 3rd Experience -->
<li class="timeline-sm-item">
<span class="timeline-sm-date">02/21 - 06/23</span>
<h5 class="mt-0 mb-1">Frontend Web Developer</h5>
<p><a href="http://www.jatri.co" class="experiance_link"
style="text-decoration:none;">Jatri Services Limited</a></p>
<p class="text-muted text-justify mt-2">Understanding of the web development process from
inception to deployment, understanding
of industry trends and the newest programming languages and the technical
skills. Responsible for developing new
user-facing features, determining the structure and design of web pages,
building reusable codes, optimizing page
loading times, and using a variety of markup languages to create the web
pages.</p>
</li>
<!-- 2nd Experience -->
<li class="timeline-sm-item">
<span class="timeline-sm-date">07/20 - 01/21</span>
<h5 class="mt-0 mb-1">Frontend Web Developer</h5>
<p><a href="http://www.coderspy.com/" class="experiance_link"
style="text-decoration:none;">CoderSpy IT Solution Ltd.</a></p>
<p class="text-muted text-justify mt-2">Work closely with lead developers to design products
and solutions to different user and
infrastructure problems. Maintain standards compliance. Optimize application
for maximum speed and scalability.
Collaborate with other team members and stakeholders.</p>
</li>
<!-- <li class="timeline-sm-item">
<span class="timeline-sm-date">02/20 - 05/20</span>
<h5 class="mt-0 mb-1">Intern as Frentend Web Developer</h5>
<p> <a href="https://exitolabs.com/" class="experiance_link" style="text-decoration:none;">Exito Labs</a></p>
<p class="text-muted mt-2 mb-0">Gig Crud, Seller Analytic Create using(Bootstrap4 HTML5, CSS4, JS). Create Saved Gig, so that user can save their likely gig into their account. Worked with customers to understand needs and provide service.</p>
</li> -->
</ul>
<h5 class="mb-3 mt-4 text-uppercase"><i class="mdi mdi-cards-variant mr-1"></i>
Projects</h5>
<div class="table-responsive" id="project">
<table class="table table-borderless mb-0">
<thead class="thead-light">
<tr>
<th>#</th>
<th>Project Name</th>
<th>Core Language</th>
<th>Start Date</th>
<th>End Date</th>
<th>Project Link</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Jatri User Ticketing</td>
<td>Vue & Nuxt Js</td>
<td>10/2022</td>
<td>11/2022</td>
<td><button target="_blank"
onclick="window.location.href='https://ticket.jatri.co'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>2</td>
<td>BRCT Online Ticketing</td>
<td>Vue & Nuxt Js</td>
<td>02/2022</td>
<td>03/2022</td>
<td><button target="_blank"
onclick="window.location.href='https://ticketing-brtc.gov.bd/'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>3</td>
<td>Brothers Naigation Online Ticketing</td>
<td>Vue & Nuxt Js</td>
<td>10/2021</td>
<td>12/2021</td>
<td><button target="_blank"
onclick="window.location.href='https://brothersnavigation.com/'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>4</td>
<td>Catering Service Website</td>
<td>MERN Stack</td>
<td>03/2021</td>
<td>03/2021</td>
<td><button target="_blank"
onclick="window.location.href='https://mama-s-catering.web.app/'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>5</td>
<td>E-commerce Website</td>
<td>MERN Stack</td>
<td>03/2021</td>
<td>03/2021</td>
<td><button target="_blank"
onclick="window.location.href='https://veg-green.web.app/'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>6</td>
<td>Ride Sharing Website</td>
<td>React JS</td>
<td>03/2021</td>
<td>03/2021</td>
<td><button target="_blank"
onclick="window.location.href='https://ridechai.web.app/'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>7</td>
<td>Premier Club Website</td>
<td>React JS</td>
<td>02/2021</td>
<td>03/2021</td>
<td><button target="_blank"
onclick="window.location.href='https://jk-premier-club.netlify.app/'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>8</td>
<td>Premier League Website</td>
<td>React JS</td>
<td>02/2021</td>
<td>02/2021</td>
<td><button target="_blank"
onclick="window.location.href='https://jk-premier-league.netlify.app/'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>9</td>
<td>School Website</td>
<td>Bootstrap</td>
<td>05/2020</td>
<td>05/2020</td>
<td><button target="_blank"
onclick="window.location.href='https://nazrulacademy.netlify.app/'"
class="link_btn">Click Here</button></td>
</tr>
<!-- ----------- -->
<tr>
<td>10</td>
<td>Weather search Website</td>
<td>Javascript, API</td>
<td>02/2021</td>
<td>02/2021</td>
<td><button target="_blank"
onclick="window.location.href='https://joyontokarmakar.github.io/temperatureapp/'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>11</td>
<td>Lyric Searching Website</td>
<td>Javascript, API</td>
<td>02/2021</td>
<td>02/2021</td>
<td><button target="_blank"
onclick="window.location.href='https://joyontokarmakar.github.io/hard_rock/'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>12</td>
<td>Hungry Monster Website</td>
<td>Javascript, API</td>
<td>02/2021</td>
<td>02/2021</td>
<td><button target="_blank"
onclick="window.location.href='https://joyontokarmakar.github.io/assignment_5/'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>13</td>
<td>Banking Website</td>
<td>Javascript</td>
<td>02/2021</td>
<td>02/2021</td>
<td><button target="_blank"
onclick="window.location.href='https://joyontokarmakar.github.io/personal_bank/'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>14</td>
<td>Template-1</td>
<td>Bootstrap</td>
<td>12/2019</td>
<td>12/2019</td>
<td><button target="_blank"
onclick="window.location.href='https://titantemplate1.netlify.app/'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>15</td>
<td>Template-2</td>
<td>Bootstrap</td>
<td>12/2019</td>
<td>12/2019</td>
<td><button target="_blank"
onclick="window.location.href='https://titantemplate2.netlify.app/'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>16</td>
<td>Template-3</td>
<td>Bootstrap</td>
<td>12/2019</td>
<td>12/2019</td>
<td><button target="_blank"
onclick="window.location.href='https://ctbdorganization.netlify.app/'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>17</td>
<td>Template-4</td>
<td>Bootstrap</td>
<td>11/2019</td>
<td>11/2019</td>
<td><button target="_blank"
onclick="window.location.href='https://royeltheme.netlify.app/'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>18</td>
<td>Portfolio Design</td>
<td>Bootstrap</td>
<td>11/2019</td>
<td>11/2019</td>
<td><button target="_blank"
onclick="window.location.href='https://portfoliotemp.netlify.app/'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>19</td>
<td>Tic-Tac-Toe</td>
<td>Javascript</td>
<td>11/2019</td>
<td>11/2019</td>
<td><button target="_blank"
onclick="window.location.href='https://ticttoe.netlify.app/'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>20</td>
<td>Calculator-1</td>
<td>Javascript</td>
<td>11/2019</td>
<td>11/2019</td>
<td><button target="_blank"
onclick="window.location.href='https://scientificcalc.netlify.app/'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>21</td>
<td>Calculator-2</td>
<td>Javascript</td>
<td>10/2019</td>
<td>10/2019</td>
<td><button target="_blank"
onclick="window.location.href='https://binarycalc.netlify.app/'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>22</td>
<td>Mobile</td>
<td>HTML,CSS</td>
<td>10/2019</td>
<td>10/2019</td>
<td><button target="_blank"
onclick="window.location.href='https://mobiledisplay.netlify.app/'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>23</td>
<td>Layout-1</td>
<td>HTML,CSS</td>
<td>08/2019</td>
<td>08/2019</td>
<td><button target="_blank"
onclick="window.location.href='https://gigcrud.netlify.app/'"
class="link_btn">Click Here</button></td>
</tr>
<tr>
<td>24</td>
<td>Layout-2</td>
<td>HTML,CSS</td>
<td>08/2019</td>
<td>08/2019</td>
<td><button target="_blank"
onclick="window.location.href='https://seller-analytic.netlify.app/'"
class="link_btn">Click Here</button></td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- end timeline content-->
<div class="tab-pane" id="settings">
<form>
<h5 class="mb-3 text-uppercase bg-light p-2"><i
class="mdi mdi-account-circle mr-1"></i> Personal Info</h5>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label for="firstname">First Name</label>
<input type="text" class="form-control" id="firstname"
placeholder="Enter first name">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label for="lastname">Last Name</label>
<input type="text" class="form-control" id="lastname"
placeholder="Enter last name">
</div>
</div> <!-- end col -->
</div> <!-- end row -->
<div class="row">
<div class="col-12">
<div class="form-group">
<label for="userbio">Bio</label>
<textarea class="form-control" id="userbio" rows="4"
placeholder="Write something..."></textarea>
</div>
</div> <!-- end col -->
</div> <!-- end row -->
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label for="useremail">Email Address</label>
<input type="email" class="form-control" id="useremail"
placeholder="Enter email">
<span class="form-text text-muted"><small>If you want to change email
please <a href="javascript: void(0);">click</a>
here.</small></span>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label for="userpassword">Password</label>
<input type="password" class="form-control" id="userpassword"
placeholder="Enter password">
<span class="form-text text-muted"><small>If you want to change password
please <a href="javascript: void(0);">click</a>
here.</small></span>
</div>
</div> <!-- end col -->
</div> <!-- end row -->
<h5 class="mb-3 text-uppercase bg-light p-2"><i
class="mdi mdi-office-building mr-1"></i> Company Info</h5>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label for="companyname">Company Name</label>
<input type="text" class="form-control" id="companyname"
placeholder="Enter company name">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label for="cwebsite">Website</label>
<input type="text" class="form-control" id="cwebsite"
placeholder="Enter website url">
</div>
</div> <!-- end col -->
</div> <!-- end row -->
<h5 class="mb-3 text-uppercase bg-light p-2"><i class="mdi mdi-earth mr-1"></i>
Social</h5>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label for="social-fb">Facebook</label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i
class="fab fa-facebook-square"></i></span>
</div>
<input type="text" class="form-control" id="social-fb"
placeholder="Url">
</div>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label for="social-tw">Twitter</label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i
class="fab fa-twitter"></i></span>
</div>
<input type="text" class="form-control" id="social-tw"
placeholder="Username">
</div>
</div>
</div> <!-- end col -->
</div> <!-- end row -->
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label for="social-insta">Instagram</label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i
class="fab fa-instagram"></i></span>
</div>
<input type="text" class="form-control" id="social-insta"
placeholder="Url">
</div>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label for="social-lin">Linkedin</label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i
class="fab fa-linkedin"></i></span>
</div>
<input type="text" class="form-control" id="social-lin"
placeholder="Url">
</div>
</div>
</div> <!-- end col -->
</div> <!-- end row -->
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label for="social-sky">Skype</label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i
class="fab fa-skype"></i></span>
</div>
<input type="text" class="form-control" id="social-sky"
placeholder="@username">
</div>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label for="social-gh">Github</label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i
class="fab fa-github"></i></span>
</div>
<input type="text" class="form-control" id="social-gh"
placeholder="Username">
</div>
</div>
</div> <!-- end col -->
</div> <!-- end row -->
<div class="text-right">
<button type="submit" class="btn btn-success waves-effect waves-light mt-2"><i
class="mdi mdi-content-save"></i> Save</button>
</div>
</form>
</div>
<!-- end settings content-->
</div> <!-- end tab-content -->
</div> <!-- end card-box-->
</div> <!-- end col -->
</div>
</div>
</section>
<!--footer-->
<div class="bg-white">
<div style="background: #212226; width: fit-content; color: #F5CE32; margin-left: auto; padding: 5px">
Page Visitor: <img
src="https://hitwebcounter.com/counter/counter.php?page=7651711&style=0038&nbdigits=6&type=page&initCount=0"
title="Free Stats for webpages" Alt="hitwebcounter" border="1">
</div>
</div>
<footer>
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- hitwebcounter Code START -->
<!-- <img src="https://hitwebcounter.com/counter/counter.php?page=7651711&style=0038&nbdigits=6&type=page&initCount=0" title="Free Stats for webpages" Alt="hitwebcounter" border="1"> -->
<p class="text-center">
Copyright © All Rights Reserved By <span>Joyonto Karmakar ● 2020</span>
</p>
<!--
<p class="text-center">
Copyright © All Rights Reserved By <span>Joyonto Karmakar ● <script>document.write(new Date().getFullYear())</script></span>
</p>
-->
</div>
</div>
</div>
<!--back to top-->
<a href="#home" id="back-to-top" class="btn btn-sm btn-service btn-back-to-top smooth-scroll" title="home"
role="button">
<i class="fa fa-angle-up"></i>
</a>
</footer>
<!--footer Ends-->
<!--Prevent the use of f12 key on the browser-->
<script src="js/block_inspect_element/f12.js"></script>
<!--Prevent the use of right click-->
<script src="js/block_inspect_element/rightclick.js"></script>
<!-- END -->
<!--Prevent the use of CTRL+U Button-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
document.onkeydown = function (e) {
if (e.ctrlKey &&
(e.keyCode === 67 || //c
e.keyCode === 86 || //v
e.keyCode === 85 || //u
e.keyCode === 117 || //f6
e.keyCode === 123 //f12
)) {
return false;
} else {
return true;
}
};
$(document).keypress("u", function (e) {
if (e.ctrlKey) {
return false;
} else {
return true;
}
});
</script>
<!--End-->
</body>
</html>