-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
998 lines (764 loc) · 35.6 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
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
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>responsive personal portfolio website design tutorail</title>
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="sweetalert2.min.css">
</head>
<body>
<!-- header section starts -->
<header>
<div class="user">
<img src="images/profile_img/Sahrial_alam.jpg" alt="Sahrial">
<h3 class="name">Md Sahrial Alam</h3>
<p class="post">Knowledge Seeker</p>
</div>
<nav class="navbar">
<ul>
<li><a href="#home">home</a></li>
<li><a href="#about">about</a></li>
<li><a href="#education">education</a></li>
<li><a href="#skills">Skill</a></li>
<li><a href="#portfolio">portfolio</a></li>
<li><a href="#certification">certification</a></li>
<li><a href="#contact">contact</a></li>
</ul>
</nav>
</header>
<!-- header section ends -->
<div id="menu" class="fas fa-bars"></div>
<!-- home section starts -->
<section class="home" id="home">
<h3>HI THERE !</h3>
<h1>I'M <span>Md Sahrial Alam</span></h1>
<p>I am a quick learner,passionate and creative. I love to show my creativity with my work. I always ensure my
skills are kept up to date within this rapidly changing industry.I have experienced with solo project and as
a part of team .I am co-operative
and love to learn from team mates or others. Highly interested in logical things.
</p>
<a href="#about"><button class="btn">about me <i class="fas fa-user"></i></button></a>
</section>
<!-- home section ends -->
<!-- about section starts -->
<section class="about" id="about">
<h1 class="heading"> <span>about</span> me </h1>
<div class="row">
<div class="info">
<h3> <span> name : </span> Md Sahrial Alam </h3>
<h3> <span> age : </span> 24 </h3>
<h3> <span> qualification : </span> BSc. Engineering in CSE </h3>
<h3> <span> language : </span> Bangla , English </h3>
<!-- <a href="https://github.com/Sahrial-alam34/portfolio/blob/master/MD_SAHRIAL_ALAM_RESUME.pdf" download="MD_SAHRIAL_ALAM_RESUME.pdf" target="_blank"><button class="btn"> download CV <i class="fas fa-download"></i> </button></a> -->
<button class="btn" onclick="downloadCV()">Download Resume <i class="fas fa-download"></i></button>
</div>
<div class="counter">
<div class="box">
<span>6</span>
<h3>React JS Project</h3>
</div>
<div class="box">
<span>3</span>
<h3>Research Paper</h3>
</div>
<div class="box">
<span>3</span>
<h3>AI Project</h3>
</div>
<div class="box">
<span>2</span>
<h3>PHP Project</h3>
</div>
</div>
</div>
</section>
<!-- about section ends -->
<!-- education section starts -->
<section class="education" id="education">
<h1 class="heading"> my <span>education</span> </h1>
<div class="box-container">
<div class="box">
<i class="fas fa-graduation-cap"></i>
<span>2018 - 2022 </span>
<h3>Bsc. Engineering in CSE</h3>
<p>Bangladesh University Of Business and Technology (BUBT)</p>
<p> <strong>CGPA: </strong> 3.78 (out of 4) </p>
</div>
<div class="box">
<i class="fas fa-graduation-cap"></i>
<span>2015 - 2017 </span>
<h3>HSC</h3>
<p>Government K.M.H Degree College </p>
<p> <strong>GPA: </strong> 3.92</p>
</div>
<div class="box">
<i class="fas fa-graduation-cap"></i>
<span>2013 - 2015 </span>
<h3>SSC</h3>
<p>Kotchandpur Govt. Model Pilot Secondary School</p>
<p> <strong>GPA: </strong> 5.00</p>
</div>
<div class="box">
<i class="fas fa-graduation-cap"></i>
<span>2012 </span>
<h3>JSC</h3>
<p>Kotchandpur Govt. Model Pilot Secondary School</p>
<p> <strong>GPA: </strong> 5.00</p>
</div>
</div>
</section>
<!-- education section ends -->
<!-- skill section starts -->
<section class="skills" id="skills">
<h1 class="heading"> my <span>skill</span> </h1>
<div class="row">
<div class="item">
<div class="item-text">
<span>HTML</span>
<span class="w-90">90%</span>
</div>
<div class="progress">
<div class="progress-bar w-90"></div>
</div>
</div>
<div class="item">
<div class="item-text">
<span>Tailwind</span>
<span class="w-80">95%</span>
</div>
<div class="progress">
<div class="progress-bar w-80"></div>
</div>
</div>
<div class="item">
<div class="item-text">
<span>Bootstrap</span>
<span class="w-85">90%</span>
</div>
<div class="progress">
<div class="progress-bar w-85"></div>
</div>
</div>
<div class="item">
<div class="item-text">
<span>Javascript</span>
<span class="w-75">85%</span>
</div>
<div class="progress">
<div class="progress-bar w-75"></div>
</div>
</div>
<div class="item">
<div class="item-text">
<span>Javascript</span>
<span class="w-75">85%</span>
</div>
<div class="progress">
<div class="progress-bar w-75"></div>
</div>
</div>
<div class="item">
<div class="item-text">
<span>React JS</span>
<span class="w-75">90%</span>
</div>
<div class="progress">
<div class="progress-bar w-75"></div>
</div>
</div>
<div class="item">
<div class="item-text">
<span>Node JS</span>
<span class="w-75">80%</span>
</div>
<div class="progress">
<div class="progress-bar w-75"></div>
</div>
</div>
<div class="item">
<div class="item-text">
<span>Express JS</span>
<span class="w-75">80%</span>
</div>
<div class="progress">
<div class="progress-bar w-75"></div>
</div>
</div>
<div class="item">
<div class="item-text">
<span>MongoDB</span>
<span class="w-75">75%</span>
</div>
<div class="progress">
<div class="progress-bar w-75"></div>
</div>
</div>
<div class="item">
<div class="item-text">
<span>Firebase</span>
<span class="w-75">85%</span>
</div>
<div class="progress">
<div class="progress-bar w-75"></div>
</div>
</div>
<div class="item">
<div class="item-text">
<span>C</span>
<span class="w-90">90%</span>
</div>
<div class="progress">
<div class="progress-bar w-90"></div>
</div>
</div>
<div class="item">
<div class="item-text">
<span>C++</span>
<span class="w-80">80%</span>
</div>
<div class="progress">
<div class="progress-bar w-80"></div>
</div>
</div>
<div class="item">
<div class="item-text">
<span>Python</span>
<span class="w-75">65%</span>
</div>
<div class="progress">
<div class="progress-bar w-75"></div>
</div>
</div>
<div class="item">
<div class="item-text">
<span>PHP</span>
<span class="w-90">80%</span>
</div>
<div class="progress">
<div class="progress-bar w-90"></div>
</div>
</div>
<div class="item">
<div class="item-text">
<span>MySql</span>
<span class="w-85">85%</span>
</div>
<div class="progress">
<div class="progress-bar w-85"></div>
</div>
</div>
<div class="item">
<div class="item-text">
<span>Oracle</span>
<span class="w-80">80%</span>
</div>
<div class="progress">
<div class="progress-bar w-80"></div>
</div>
</div>
<div class="item">
<div class="item-text">
<span>Git</span>
<span class="w-80">80%</span>
</div>
<div class="progress">
<div class="progress-bar w-80"></div>
</div>
</div>
<div class="item">
<div class="item-text">
<span>Github</span>
<span class="w-80">90%</span>
</div>
<div class="progress">
<div class="progress-bar w-80"></div>
</div>
</div>
<div class="item">
<div class="item-text">
<span>Maltego</span>
<span class="w-85">85%</span>
</div>
<div class="progress">
<div class="progress-bar w-85"></div>
</div>
</div>
</div>
<div class="cpp">
<h1>Problem Solving Skill</h1>
<p>
I have participated BUBT intra university programming contest many times. I have solved almost
<strong>100</strong> problems In various online judge like Codeforce , UVA, Hackerrank etc.Here is my
profile link
<button>
<a href="https://www.stopstalk.com/user/profile/sahrial_alam34" target="_blank">
StopStalk </a>
</button>
</p>
</div>
</section>
<!-- skill section ends -->
<!-- portfolio section starts -->
<section class="portfolio" id="portfolio">
<h1 class="heading"> my <span>portfolio</span> </h1>
<h2 class="project_title">Software Development Project</h2>
<!--========Software Development Project======= -->
<div class="cards">
<div class="card">
<img src="images/web development/unitedSports.PNG" alt="crudproject">
<div class="content">
<h3>United Sports Academy</h3>
<p>Enrolled Sports Classes and Make Payment
</p>
<ul>
<li>
Admin can make update user role. Can control post and has capable for delete user or
delete post.
</li>
<li>
User watch class and make payment through stripe. Instructor can add and edit elements
through his route.
</li>
<li>
Technology Used: React, Node, Express, Vanilla Js, Firebase Authentication, Stripe,JWT
</li>
</ul>
<div class="card_footer ">
<!--<a href="https://youtu.be/jreLO5a3T6g" target="_blank" class="button">Demo</a>-->
<a href="https://united-sports-academy-45cf9.web.app/" class="button" target="_blank">
Live Link</a>
<a href="https://github.com/Sahrial-alam34/united-sports-academy-client" class="button"
target="_blank">
Client Link</a>
<a href="https://github.com/Sahrial-alam34/united-sports-academy-server" class="button"
target="_blank">
Server</a>
</div>
</div>
</div>
<div class="card">
<img src="images/web development/bistroBoss.PNG" alt="crudproject">
<div class="content">
<h3>Bistro Boss</h3>
<p>Finding Food Item and Make an Order
</p>
<ul>
<li>
User can see food items and make order and make payment by stripe. Admin can see user and
update user.
</li>
<li>
Using JWT, Axios secure, Interception the website is try to secure.Use verifyAdmin to admin
route
</li>
<li>
Technology Used: React, Node, Express, Tailwind, Firebase Authentication, MongoDB
</li>
</ul>
<div class="card_footer ">
<!--<a href="https://youtu.be/jreLO5a3T6g" target="_blank" class="button">Demo</a>-->
<a href="https://house-of-toy-cars.web.app/" class="button" target="_blank">
Live Link</a>
<a href="https://github.com/Sahrial-alam34/bistro-boss-client" class="button" target="_blank">
Client Link</a>
<a href="https://github.com/Sahrial-alam34/bistro-boss-server" class="button" target="_blank">
Server</a>
</div>
</div>
</div>
<div class="card">
<img src="images/web development/toymarket.PNG" alt="crudproject">
<div class="content">
<h3>House of Toy </h3>
<p>Finding different Cars and Make an Order
</p>
<ul>
<li>
User can see all cars in all cars page and used react tabs for cars filter. In all cars
section using search for any car.
</li>
<li>
User can see view details and add, edit, delete cars information, but must have logged in
those are private route.
</li>
<li>
Technology Used: React, Node, Express, Tailwind, Firebase Authentication, MongoDB
</li>
</ul>
<div class="card_footer ">
<!--<a href="https://youtu.be/jreLO5a3T6g" target="_blank" class="button">Demo</a>-->
<a href="https://house-of-toy-cars.web.app/" class="button" target="_blank">
Live Link</a>
<a href="https://github.com/Sahrial-alam34/toy-marketplace-client" class="button"
target="_blank">
Client Link</a>
<a href="https://github.com/Sahrial-alam34/toy-marketplace-server" class="button"
target="_blank">
Server</a>
</div>
</div>
</div>
<div class="card">
<img src="images/web development/recipe heaven.PNG" alt="crudproject">
<div class="content">
<h3>Recipe Heaven</h3>
<p> Finding Foods and Chef Details
</p>
<ul>
<li>
User can see all food details in all food category section and list based foods and also
chef info.
</li>
<li>
User want to see chef details information should be login in. Also used in Private Route in
chef details page
</li>
<li>
Technology Used: React, Node, Express, Bootstarp, Firebase Authentication
</li>
</ul>
<div class="card_footer ">
<!--<a href="https://youtu.be/jreLO5a3T6g" target="_blank" class="button">Demo</a>-->
<a href="https://chef-recipe-hunter-36b56.web.app/" class="button" target="_blank">
Live Link</a>
<a href="https://github.com/Sahrial-alam34/chef-recipe-heaven-client" class="button"
target="_blank">
Client Link</a>
<a href="https://github.com/Sahrial-alam34/chef-recipe-heaven-server" class="button"
target="_blank">
Server</a>
</div>
</div>
</div>
<div class="card">
<img src="images/web development/car doctor.PNG" alt="crudproject">
<div class="content">
<h3>Car Doctor</h3>
<p> Finding Car Repair and Proceed Order
</p>
<ul>
<li>
User can see car repair elements using sorted by price and search options. For booked a
service, must login.
</li>
<li>
After logging, User add a booking service and see dashboard of car bookings and place order
conformation.
</li>
<li>
Technology Used: React, Node, Express, Tailwind, Firebase Authentication, MongoDB
</li>
</ul>
<div class="card_footer ">
<!--<a href="https://youtu.be/jreLO5a3T6g" target="_blank" class="button">Demo</a>-->
<a href="https://cars-doctor-1993d.web.app/" class="button" target="_blank">
Live Link</a>
<a href="https://github.com/Sahrial-alam34/car-doctor-client-react-firebase-mongo"
class="button" target="_blank">
Client Link</a>
<a href="https://github.com/Sahrial-alam34/car-doctor-server-react-firebase-mongodb"
class="button" target="_blank">
Server</a>
</div>
</div>
</div>
<div class="card">
<img src="images/web development/job heaven.PNG" alt="crudproject">
<div class="content">
<h3>Job Heaven</h3>
<p> Best Site For finding any types of job any where.
</p>
<ul>
<li>
User can see car repair elements using sorted by price and search options. For booked a
service, must login.
</li>
<li>
After logging, User add a booking service and see dashboard of car bookings and place order
conformation.
</li>
<li>
Technology Used: React, Node, Express, Tailwind, Firebase Authentication, MongoDB
</li>
</ul>
<div class="card_footer ">
<!--<a href="https://youtu.be/jreLO5a3T6g" target="_blank" class="button">Demo</a>-->
<a href="https://assignment9-job-heaven-react-tailwind.netlify.app/" class="button"
target="_blank">
Live Link</a>
<a href="https://github.com/Sahrial-alam34/assignment9-job-heaven-react-router-tailwind"
class="button" target="_blank">
Client Link</a>
<a href="https://github.com/Sahrial-alam34/assignment9-job-heaven-react-router-tailwind"
class="button" target="_blank">
Server</a>
</div>
</div>
</div>
<!--card end-->
</div>
<h2 class="project_title">Research Paper</h2>
<div class="cards">
<div class="card">
<img src="images/Research Paper/Bahdanau Attention Based Bengali Image Caption.PNG" alt="crudproject">
<div class="content">
<h3>Bahdanau Attention Based Bengali Image Caption Generation</h3>
<p>We introduced Bahdanau Attention Based
Bengali Image Caption Generation (BABBICG) that generate
automatically bangla caption based on images.
</p>
<div class="card_footer">
<!--<a href="https://youtu.be/jreLO5a3T6g" target="_blank" class="button">Demo</a>-->
<a href="https://ieeexplore.ieee.org/document/9765268" class="button" target="_blank">Full
Paper</a>
</div>
</div>
</div>
<div class="card">
<img src="images/Research Paper/Comparison of Different CNN Model used as Encoders For Image Captioning.PNG"
alt="roll">
<div class="content">
<h3>Comparison of Different CNN Model used as Encoders For Image Captioning</h3>
<p>We compared
five popular convolutional neural networks architecture. They
are Vgg16, InceptionV3, Resnet50, Densenet201 and Xception
Model.</p>
<div class="card_footer">
<!--<a href="https://youtu.be/abTf0Qkit40" target="_blank" class="button">Demo</a>-->
<a href="https://ieeexplore.ieee.org/document/9655846" class="button" target="_blank">Full
Paper</a>
</div>
</div>
</div>
<div class="card">
<img src="images/Research Paper/To Predict Customer Churn By Using Different Algorithms.PNG"
alt="pizza">
<div class="content">
<h3>To Predict Customer Churn By Using Different Algorithms</h3>
<p>we used the ” Impact Learning”
algorithm to predict customer churn </p>
<div class="card_footer">
<!--<a href="https://youtu.be/ILHI0Md5fKU" target="_blank" class="button">Demo</a>-->
<a href="https://ieeexplore.ieee.org/document/9765155" target="_blank" class="button">Full
Paper</a>
</div>
</div>
</div>
<!--card end-->
</div>
<h2 class="project_title">Others Project</h2>
<!--========Others Project======= -->
<div class="cards">
<div class="card">
<img src="images/Software Development/calculator.png" alt="Burger">
<div class="content">
<h3>CGPA Calculation</h3>
<p> In this project user can play typing game.User have to type the word that will be displayed
between 6 seconds. If user can't type the word correctly in this time ,the game will be stop.
Nad user can see his score and highest score.
After ending the game if se start typeing the displayed again the gam will be start again.
</p>
<div class="card_footer">
<!--<a href="https://youtu.be/vgzGxnPCmYI" target="_blank" class="button">Demo</a>-->
<a href="https://github.com/Sahrial-alam34/CGPA-Calculation" class="button"
target="_blank">Source Code</a>
</div>
</div>
</div>
<div class="card">
<img src="images/Software Development/Bank Mangement System.PNG" alt="roll">
<div class="content">
<h3>Bank Management System</h3>
<p>In this project used C# , My Sql database.</p>
<div class="card_footer">
<!---- <a href="https://youtu.be/aLKkHW13F54" target="_blank" class="button">Demo</a>-->
<a href="https://github.com/Sahrial-alam34/Bank-Mangement-System" class="button"
target="_blank">Source Code</a>
</div>
</div>
</div>
<div class="card">
<img src="images/Software Development/Online Rent.PNG" alt="pizza">
<div class="content">
<h3>Online Rent Advertisement Management System</h3>
<p>In this Project we Used Frontend and Backend : HTML, CSS, Bootstrap,JavaScript,PHP; Database:
MySql</p>
<div class="card_footer">
<!--<a href="https://youtu.be/OBnvOeHeqtw" target="_blank" class="button">Demo</a>-->
<a href="https://github.com/Sahrial-alam34/OnlineRentAdvertisementSystem" target="_blank"
class="button">Source Code</a>
</div>
</div>
</div>
<div class="card">
<img src="images/Software Development/Online Shopping.PNG" alt="hot_dog">
<div class="content">
<h3>An Online Shopping App</h3>
<p>In this project we used java and firebase</p>
<div class="card_footer">
<!--<a href="https://youtu.be/gtliUNgPBRA" target="_blank" class="button">Demo</a>-->
<a href="https://github.com/Sahrial-alam34/Online-Shopping-app" target="_blank"
class="button">Source Code</a>
</div>
</div>
</div>
<div class="cards">
<div class="card">
<img src="images/Other Project/Road Cross.PNG" alt="Burger">
<div class="content">
<h3>Road Crossing Alert Using Signal</h3>
<p> In this project used C++....
</p>
<div class="card_footer">
<!--<a href="https://youtu.be/vgzGxnPCmYI" target="_blank" class="button">Demo</a>-->
<a href="https://github.com/Sahrial-alam34/Road-Crossing-Alert-Using-Signal/tree/main/Road%20Cross%20Alert"
class="button" target="_blank">Source Code</a>
</div>
</div>
</div>
<!--card end-->
</div>
<div class="card">
<img src="images/Other Project/maltego.PNG" alt="roll">
<div class="content">
<h3>Maltego Software For Cyber Security</h3>
<p>In this project We can access any account password, Ip Address, Email etc.</p>
<div class="card_footer">
<!---- <a href="https://youtu.be/aLKkHW13F54" target="_blank" class="button">Demo</a>-->
<a href="https://github.com/Sahrial-alam34/Maltego" class="button" target="_blank">Source
Code</a>
</div>
</div>
</div>
</section>
<!-- portfolio section ends -->
<!-- certification section starts -->
<section class="certification" id="certification">
<h1 class="heading"> <span>Certification</span> </h1>
<div class="cards">
<div class="card">
<img src="images/certificate//Coding CERTIFICATE-1.png" alt="pizza">
<div class="content">
<h3>Coding Certificate (7th Intra University Programming Context)</h3>
</div>
</div>
<div class="card">
<img src="images/certificate/Bandhanu_certifiacte.PNG" alt="pizza">
<div class="content">
<h3>Bahdanau Attention Based Bengali Image Caption Generation</h3>
</div>
</div>
<div class="card">
<img src="images/certificate/ImageCapttion_certificate.PNG" alt="pizza">
<div class="content">
<h3>Comparison of Different CNN Model used as Encoders for Image Captioning</h3>
</div>
</div>
<div class="card">
<img src="images/certificate/customer_certifiacte.PNG" alt="pizza">
<div class="content">
<h3>To Predict Customer Churn By Using Different Algorithms</h3>
</div>
</div>
</div>
</section>
<!-- certification section ends -->
<!-- contact section starts -->
<section class="contact" id="contact">
<h1 class="heading"> <span>contact</span> me </h1>
<div class="row">
<div class="content">
<h3 class="title">contact info</h3>
<div class="info">
<h3 class="mail"> <i class="fas fa-envelope"></i> sahrialalam@gmail.com </h3>
<h3> <i class="fas fa-phone"></i> +8801971727971 </h3>
<h3>
<i class="fab fa-facebook"> </i>
<a href="https://www.facebook.com/sharialalam.sunny" target="_blank">
https://www.facebook.com/sharialalam.sunny
</a>
</h3>
<h3>
<i class="fab fa-github"> </i>
<a href="https://github.com/Sahrial-alam34" target="_blank">
https://github.com/Sahrial-alam34
</a>
</h3>
<h3>
<i class="fab fa-linkedin-in"> </i>
<a href="https://www.linkedin.com/in/md-sharial-alam-7a93121b0" target="_blank">
https://www.linkedin.com/in/md-sharial-alam-7a93121b0
</a>
</h3>
<h3 class="location_address"> <i class="fas fa-map-marker-alt"></i> Mirpur, Dhaka , Bangladesh </h3>
</div>
</div>
<form id="form">
<input type="text" placeholder="name" name="name" id="name" class="box">
<input type="email" placeholder="email" name="email" id="email" class="box">
<input type="text" placeholder="subject/project" name="project" id="project" class="box">
<textarea cols="30" rows="10" name="text" id="text" class="box message"
placeholder="message"></textarea>
<button type="submit" class="btn"> send <i class="fas fa-paper-plane"></i> </button>
</form>
</div>
</section>
<!-- contact section ends -->
<!-- scroll top button -->
<a href="#home" class="top">
<img src="images/scroll-top-img.png" alt="">
</a>
<!-- jquery cdn link -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdn.emailjs.com/dist/email.min.js"></script>
<!-- custom js file link -->
<script src="script.js"></script>
<!-- for download Cv -->
<script>
function downloadCV() {
var link = document.createElement('a');
link.href = 'https://github.com/Sahrial-alam34/portfolio/raw/master/MD_SAHRIAL_ALAM_RESUME.pdf';
link.download = 'MD_SAHRIAL_ALAM_RESUME.pdf';
link.click();
}
</script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11.0.20/dist/sweetalert2.all.min.js"></script>
<script>
document.getElementById('form').addEventListener('submit', function (event) {
event.preventDefault();
// Get form values
var name = document.getElementById('name').value;
var email = document.getElementById('email').value;
var project = document.getElementById('project').value;
var message = document.getElementById('text').value;
// Log form values to the console (you can modify this part to do something else)
// console.log('Name: ' + name);
// console.log('Email: ' + email);
// console.log('Project: ' + project);
// console.log('text: ' + message);
var params = {
from_name: name,
email_id: email,
subject: project,
message: message,
}
//console.log('params',params)
emailjs.send("service_p4uuz0l", "template_ch7dsya", params, "2j9vU3IiCnpWnt9q9").then(function () {
Swal.fire({
title: 'Success',
text: 'Form submitted!',
icon: 'success',
confirmButtonText: 'OK'
}).then(function () {
// Reset the form
document.getElementById('form').reset();
});
})
});
</script>
</body>
</html>