-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappreciation.html
1078 lines (835 loc) · 61.2 KB
/
appreciation.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
999
1000
<!DOCTYPE html>
<html lang="en" class="no-js" >
<head>
<!-- Meta, title, CSS, favicons, etc. -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Appreciations</title>
<link rel="icon" href="av-assets/imgg/l.png" sizes="16x16">
<meta property="og:title" content="Mahmudul H. Nayeem">
<meta property="og:type" content="website">
<meta property="og:url" content="http://www.nayeem.cf">
<meta property="og:image" content="av-assets/imgg/ww.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@480&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@480&display=swap" rel="stylesheet">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-34590577-4', 'auto');
ga('send', 'pageview');
</script>
<!-- Bundled vendor CSS files -->
<link href="av-assets/css/vendor.dd98eeee80a47afcbe55.bundle.css" rel="stylesheet">
<link href="av-assets/css/appreciation.css" rel="stylesheet">
<!-- Our compiled and merged Sass files -->
<link href="av-assets/css/app.ee7641cdc24bc970ef95.bundle.css" rel="stylesheet">
<!--
Replace "no-js" class with "js" in case JavaScript is available.
You can delete this when you feel the need to make use of modernizr
-->
<script src="/path/to/jquery.min.js"></script>
<script src="/path/to/jquery.gotop.min.js"></script>
<script src="index.js"></script>
<script>(function(h){h.className = h.className.replace('no-js', 'js')})(document.documentElement)</script>
<!-- Place favicon.ico and apple-touch-icon.png in the root directory. -->
<!-- Place anything custom after this. But put JS to the end of body. -->
</head>
<body class="example" style="background-color: black">
<div>
<div id="button" style="position: fixed; right: 5%; bottom: 15%; z-index: 1">
<a class="my-btn-top" data-aos="fade-right" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" class="btn on-link" href="#appreciations" style="font-size: 12px;font-family: 'Quicksand', sans-serif; width: 150px; height: auto;margin-bottom: 120px; margin-left: 0px; border-radius: 20px; padding: 10px 15px;"><i class="fa fa-long-arrow-up" aria-hidden="true"></i></a>
</div>
</div>
<nav id="navbar" class="navbar navbar-expand-lg navbar-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="#appreciations" style=""><img src="av-assets/imgg/log.png"></a>
<!--
<h3>Nm</h3>
-->
<div id="nav-icon">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<div class="collapse navbar-collapse" id="navbarTogglerDemo02" >
<ul class="navbar-nav ml-auto mt-2 mt-lg-0">
<li class="nav-item">
<a class="nav-link navbar-brand" href="index.html">
<i class="fa fa-home" aria-hidden="true">Home</i>
</a>
</li>
<li class="nav-item">
<a class="nav-link navbar-brand" href="#stories">
<i class="fa fa-medium" aria-hidden="true">Reference</i>
</a>
</li>
<li class="nav-item">
<a class="nav-link navbar-brand" href="#appreciationn">
<i class="fa fa-envira" aria-hidden="true">Appreciations</i>
</a>
</li>
<li class="nav-item">
<a class="nav-link navbar-brand" href="#download">
<i class="fa fa-download" aria-hidden="true">Download</i>
</a>
</li>
<li class="nav-item">
<a class="nav-link navbar-brand" href="#footer">
<i class="fa fa-connectdevelop" aria-hidden="truefont-size:12px;">Contact</i>
</a>
</li>
</ul>
</div>
<div class="headerr">
<div class="progresss-container">
<div class="progresss-bar" id="myBar"></div>
</div>
</div>
</div>
</nav>
<div id="appreciations" style="margin-top: 50px; background-color: black; width: 100%; height: 100vh; margin: 0px 20px;">
<div class="container" >
<div class="row">
<div class="col">
<h1 style="font-family: 'Quicksand', sans-serif; margin-bottom: 10px;">Never Stop Appreciation<br>
</h1>
<div style="font-family: 'Quicksand', sans-serif;display: flex; flex-direction: column; justify-content: flex-start;">
<p style="color: white;margin-left: 0px;margin-top: 0px;margin-bottom: 0px; padding-left: 0px; font-size: 14px; text-align: left;">
The most precious things in the universe are intention and positivity that we perceive through our effort and action <br>
I've met a bunch of young, energetic and tallented colleagues, friends,
fellow juvenile minds who always warmly <br>
appreciated, valued my effort and works to bring a generation of kindness and righteousness. Ascertaining that,<br>No
matter what we are going through, the most precious thing is to staypositive and strong. “Never lose belief in <br>
life and never stop appreciating. Cause end of the day, It matters!
</p>
<p style="font-size: 14px; text-align: left; margin-left: 0px; padding-left: 0px;margin-top: 0px; padding-top: 0px; color:#FF1493;margin-bottom: 20px;">#Thank_You_Guys</p>
</div>
<!--During the first quarter of 21st century, self centered social activism, lack of community interaction and practice of <br>
backbiting hinders our openness and inartificial abilities. We forgot to appreciate, stay positive and graceful even<br>
during the most sorrowful moments. However, -->
<a class="my-btn-trans navbar-brand" data-aos="fade-right" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="480" class="btn on-link" href="#reference" style="font-size: 12px;font-family: 'Quicksand', sans-serif; width: 150px; height: auto;margin-bottom: 120px; margin-left: 0px; border-radius: 20px; padding: 10px 15px;">References <i class="fa fa-long-arrow-right" aria-hidden="true"></i></a>
<a class="my-btn-trans navbar-brand" data-aos="fade-right" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="480" class="btn on-link" href="#appreciationn" style="font-size: 12px;font-family: 'Quicksand', sans-serif; width: 150px; height: auto;margin-bottom: 120px; margin-left: 0px; border-radius: 20px; padding: 10px 15px;">Appreciations <i class="fa fa-long-arrow-right" aria-hidden="true"></i></a>
</div>
</div>
</div>
<div class="arrow-container">
<a class="arrow-link" href="#stories">
<p style="font-size: 10px;font-family: 'Quicksand', sans-serif;
">Spread Positivity</p>
<div class="arrow">
<ul>
<li></li>
<li></li>
</ul>
</div>
</a>
</div>
</div>
<div id="stories" style="margin-top: 50px; background-color: black; width: 100%; height: auto; text-align: right;">
<div class="container" >
<div class="row" style="justify-content: center;">
<h1 class="col-sm-12 col-md-12 col-lg-10" style="color: #FF1493; font-size: 44px; font-family: 'Quicksand'; width: 100%; text-align: center; margin: 30px 0px 30px;">What Others Saying?</h1>
<!--left aligned -->
<div id="reference" class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center; padding-right: 0px;">
<div style="width: 15%; display: inline-block; text-align: center; vertical-align: center">
<img src="av-assets/profile/noman.jpg" alt="" style="display: inline-block; width: 70%; border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
<div style="width: 85%; display: flex; flex-direction: column; justify-content: center;">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="text-align: left; font-size: 18px; color: #FF1493;">References <i class="fa fa-long-arrow-right" aria-hidden="true"></i></p>
<p style="color: #FF1493; text-align: left; font-size: 14px; margin: 0px; padding: 0px;">Noman Ibn Hafiz <sub>Mechanical Engineer, CUET</sub></p>
<p style="color: white; text-align: left; font-size: 12px; margin: 0px; padding: 0px;">An insightful, brilliant boy with outstanding passion for science and human development. He is hardworking and very positive about his ambitions. And his sole purpose is the total eradication of pain and misery of present day human life and making their life better and easier through science and modern technology. With the current advancement of technology, the world needs more and more passionate people with technological knowledge as well as leadership qualities. I think Nayeem has more than these and someday he will make a change.</p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: left;">Noman Described Nayeem in 3 Words: Insightful, Positive, Hardworking.</p>
<div style="display: flex; justify-content: flex-end; margin: 0px; width: 30%; text-align: right; font-size: 12px;">
<p style="color: #FF1493; font-size: 12px;font-size:12px;">Contact Noman:</p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/ibnhafiz.noman">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
</div>
</div>
</div>
<!--right aligned -->
<div class="col-sm-12 col-md-12 col-lg-10" style="display: flex; justify-content: center; padding-left: 0px;">
<div style="width: 85%; display: flex; flex-direction: column; justify-content: center; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: right; font-size: 14px;margin: 0px; padding: 0px;">Rafsan Jani <sub>Head of Operations, Startup Chattogram</sub></p>
<p style="color: white; text-align: right; font-size: 12px;margin: 0px; padding: 0px;">
Nowadays the world is transforming but not our generation. Cause they love to spend their time by gaming or chatting not in a innovative way. The different one is for me always Mahmudul Hasan Nayeem. I am very grateful to have you as my friend and colleague. You are very passionate and hard working. I see the future Bangladesh lead by you soon.
</p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<div style="display: flex; justify-content: flex-start; margin-right: 0px; width: 30%; text-align: left;font-size:12px;">Contact Rafsan:</p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/mah.rafsan.jani">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: right;">Rafsan Described Nayeem in 3 Words: Dedicated, Hard Working, Professional</p>
</div>
</div>
<div style="width: 15%; display: inline-block; vertical-align: center; text-align: center; ">
<img src="av-assets/profile/rafsan.jpg" alt="" style="display: inline-block; width: 70%; border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
</div>
<!--left aligned -->
<div class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-right: 0px;">
<div style="width: 15%; display: inline-block; text-align: center; vertical-align: center">
<img src="av-assets/profile/sheuli.jpg" alt="" style="display: inline-block; width: 70%; border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
<div style="width: 85%; display: flex; flex-direction: column;justify-content: center; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: left; font-size: 14px;margin: 0px; padding: 0px;">Sheuli Shikder <sub>Head of Branding, Shikder Tex</sub></p>
<p style="color: white; text-align: left; font-size: 12px;margin: 0px; padding: 0px;">Nayeem is absolute dedicated person, He is very much passionate about anything he does. Whatever he does, he gives his 100%. Nayeem is very nice person to work with. Polite and smart. </p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: left;">Khandaker Described Nayeem in 3 Words: Talented, Down to earth, Active </p>
<div style="display: flex; justify-content: flex-end; margin: 0px; width: 30%; text-align: right; font-size: 12px;">
<p style="color: #FF1493; font-size: 12px;font-size:12px;">Contact Khandaker:</p>
<a href="mailto:khrafi100@gmail ">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/khrafi.uddin">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
</div>
</div>
</div>
<!--right aligned -->
<div class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-left: 0px;">
<div style="width: 85%;justify-content: center; display: flex; flex-direction: column; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: right; font-size: 14px;margin: 0px; padding: 0px;">Mahidur Rahman <sub>CMO,Zytrav</sub></p>
<p style="color: white; text-align: right; font-size: 12px;margin: 0px; padding: 0px;">
Nayem is a business-savvy tech enthusiastic person. He has the ability to lead any team. He loves to show his achievement always. Also, he has always a can-do attitude. I wish him good luck in the future.
</p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<div style="display: flex; justify-content: flex-start; margin-right: 0px; width: 30%; text-align: left;font-size:12px;">Contact Mahidur:</p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/DurjoyMahid">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: right;">Mahidur Described Nayeem in 3 Words: Tech Expertise, Daunting, Can do anything attitude</p>
</div>
</div>
<div style="width: 15%; display: inline-block; text-align: center; justify-content: center; vertical-align: center">
<img src="av-assets/profile/mahid.jpg" alt="" style="display: inline-block; width: 70%;border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
</div>
<!--left aligned -->
<div id="appreciationn" class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-right: 0px;">
<div style="width: 15%; display: inline-block; text-align: center; vertical-align: center">
<img src="av-assets/profile/sumaiya.jpg" alt="" style="display: inline-block; width: 70%; border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
<div style="width: 85%;justify-content: center; display: flex; flex-direction: column; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: left; font-size: 14px;margin: 0px; padding: 0px;">Sumaiya Zaman Mim <sub>Social Activist,Youth Career Institute</sub></p>
<p style="color: white; text-align: left; font-size: 12px;margin: 0px; padding: 0px;">Umm i think he has self required knowledge. He works with his best and has dedication towards his works. He will surely shine by keeping his efforts like this❤️</p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: left;">Sumaiya Described Nayeem in 3 Words: Dedicated, Polite and Amazing.</p>
<div style="display: flex; justify-content: flex-end; margin: 0px; width: 30%; text-align: right;font-size: 12px;">
<p style="color: #FF1493; font-size: 12px;font-size:12px;">Contact Sumaiya:</p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/sumaiyazaman.mim.9">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
</div>
</div>
</div>
<!--right aligned -->
<div class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-left: 0px;">
<div style="width: 85%;justify-content: center; display: flex; flex-direction: column; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: right; font-size: 14px;margin: 0px; padding: 0px;">Ishrat Zahan Muni <sub>Co-founder, Neuinfer</sub></p>
<p style="color: white; text-align: right; font-size: 12px;margin: 0px; padding: 0px;">
You are very intellectual professional activist on your field. You are also carrying a good leadership profile. You generate great ideas and invite questions from your colleagues, you have courage to find out solutions of any problems and you give suggestions and quick appropriate decision. Although, I rather you are also a good listener. My observation say that you are trying to create a position including your dreams permission to produce people's development to reach the pinnacle ; all of these make you a good leader.
</p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<div style="display: flex; justify-content: flex-start; margin-right: 0px; width: 30%; text-align: left;font-size:12px;">Contact Ishrat:</p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/dihana.mirja">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: right;">Ishrat Described Nayeem in 3 Words: Energetic, Cool and Desperate to Fullfil Dream</p>
</div>
</div>
<div style="width: 15%; display: inline-block; text-align: center; justify-content: center; vertical-align: center">
<img src="av-assets/profile/muni.png" alt="" style="display: inline-block; width: 70%;border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
</div>
<!--left aligned -->
<div class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-right: 0px;">
<div style="width: 15%; display: inline-block; text-align: center; vertical-align: center">
<img src="av-assets/profile/rafi.jpg" alt="" style="display: inline-block; width: 70%; border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
<div style="width: 85%; display: flex; flex-direction: column;justify-content: center; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: left; font-size: 14px;margin: 0px; padding: 0px;">Khandaker Rafi Uddin <sub>Web Developer, Upwork</sub></p>
<p style="color: white; text-align: left; font-size: 12px;margin: 0px; padding: 0px;">Nayeem is absolute dedicated person, He is very much passionate about anything he does. Whatever he does, he gives his 100%. Nayeem is very nice person to work with. Polite and smart. </p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: left;">Khandaker Described Nayeem in 3 Words: Talented, Down to earth, Active </p>
<div style="display: flex; justify-content: flex-end; margin: 0px; width: 30%; text-align: right; font-size: 12px;">
<p style="color: #FF1493; font-size: 12px;font-size:12px;">Contact Khandaker:</p>
<a href="mailto:khrafi100@gmail ">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/khrafi.uddin">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
</div>
</div>
</div>
<!--right aligned -->
<div class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-left: 0px;">
<div style="width: 85%;justify-content: center; display: flex; flex-direction: column; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: right; font-size: 14px;margin: 0px; padding: 0px;">Saima Tabassum Bushra <sub>Advisor to the President, Happy Foundation</sub></p>
<p style="color: white; text-align: right; font-size: 12px;margin: 0px; padding: 0px;">
You are very intellectual professional activist on your field. You are also carrying a good leadership profile. You generate great ideas and invite questions from your colleagues, you have courage to find out solutions of any problems and you give suggestions and quick appropriate decision. Although, I rather you are also a good listener. My observation say that you are trying to create a position including your dreams permission to produce people's development to reach the pinnacle ; all of these make you a good leader.
</p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<div style="display: flex; justify-content: flex-start; margin-right: 0px; width: 30%; text-align: left;font-size:12px;">Contact Ishrat:</p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/dihana.mirja">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: right;">Ishrat Described Nayeem in 3 Words: Energetic, Cool and Desperate to Fullfil Dream</p>
</div>
</div>
<div style="width: 15%; display: inline-block; text-align: center; justify-content: center; vertical-align: center">
<img src="av-assets/profile/saima.jpg" alt="" style="display: inline-block; width: 70%;border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
</div>
<!--left aligned -->
<div id="appreciationn" class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-right: 0px;">
<div style="width: 15%; display: inline-block; text-align: center; vertical-align: center">
<img src="av-assets/profile/drishty.jpg" alt="" style="display: inline-block; width: 70%; border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
<div style="width: 85%;justify-content: center; display: flex; flex-direction: column; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="text-align: left; font-size: 18px; color: #FF1493;">Appreciations <i class="fa fa-long-arrow-right" aria-hidden="true"></i></p>
<p style="color: #FF1493; text-align: left; font-size: 14px;margin: 0px; padding: 0px;">Ameena Rahman Drishty <sub>Graphics Designer</sub></p>
<p style="color: white; text-align: left; font-size: 12px;margin: 0px; padding: 0px;">Umm i think he has self required knowledge. He works with his best and has dedication towards his works. He will surely shine by keeping his efforts like this❤️</p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: left;">Drishty Described Nayeem in 3 Words: Dedicated, Polite and Amazing.</p>
<div style="display: flex; justify-content: flex-end; margin: 0px; width: 30%; text-align: right;font-size: 12px;">
<p style="color: #FF1493; font-size: 12px;font-size:12px;">Contact Drishty:</p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/drishtyrahman.drishty">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
</div>
</div>
</div>
<!--right aligned -->
<div class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-left: 0px;">
<div style="width: 85%;justify-content: center; display: flex; flex-direction: column; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: right; font-size: 14px;margin: 0px; padding: 0px;">Sunzida Sharmin Shammy</p>
<p style="color: white; text-align: right; font-size: 12px;margin: 0px; padding: 0px;">He is ambitious, hardworking, friendly, helping minded person. He has so many potentials & determination to his work that keeps me in surprise. He always motivated others specially me. I wish he finds everything in life he wishes for.</p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<div style="display: flex; justify-content: flex-start; margin-right: 0px; width: 30%; text-align: left;font-size:12px;">Contact Shammy:</p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/sunshine.shammy">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: right;">Shammy Described Nayeem in 3 Words: Hardworking, Determined & Dreamer</p>
</div>
</div>
<div style="width: 15%; display: inline-block;text-align: center; justify-content: center; vertical-align: center">
<img src="av-assets/profile/shammy.jpg" alt="" style="display: inline-block; width: 70%;border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
</div>
<!--left aligned -->
<div class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-right: 0px;">
<div style="width: 15%; display: inline-block; text-align: center; vertical-align: center">
<img src="av-assets/profile/rafia.jpg" alt="" style="display: inline-block; width: 70%; border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
<div style="width: 85%; display: flex; flex-direction: column;justify-content: center; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: left; font-size: 14px;margin: 0px; padding: 0px;">Rafia Sharin <sub>MBBS,Chittagong Medical College</sub></p>
<p style="color: white; text-align: left; font-size: 12px;margin: 0px; padding: 0px;">Nayeem is the best entrepreneurial mind, startup analyst and development consultant I have ever seen. He is dedicated, concerned and intellectual in his own way. He inspires others and leading a generation of young folks. </p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: left;">Rafia Described Nayeem in 3 Words: Active, Innovative, Passionate</p>
<div style="display: flex; justify-content: flex-end; margin: 0px; width: 30%; text-align: right; font-size: 12px;">
<p style="color: #FF1493; font-size: 12px;font-size:12px;">Contact Rafia:</p>
<a href="mailto:Rafiasharin59@gmail ">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/rafiashahrin.tonni">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
</div>
</div>
</div>
<!--right aligned -->
<div class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-left: 0px;">
<div style="width: 85%;justify-content: center; display: flex; flex-direction: column; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: right; font-size: 14px;margin: 0px; padding: 0px;">Sadia Haque Tonny <sub>CD,Hult Prize Foundation</sub></p>
<p style="color: white; text-align: right; font-size: 12px;margin: 0px; padding: 0px;">
An excellent mind with zeal to learn new things. He is always learning new thing with immense interest. Skills in relative field is so much developed and is always trying to better his skills.
</p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<div style="display: flex; justify-content: flex-start; margin-right: 0px; width: 30%; text-align: left;font-size:12px;">Contact Sadia:</p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/profile.php?id=100014850664482">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: right;">Sadia Described Nayeem in 3 Words: versed, resourceful, skilled</p>
</div>
</div>
<div style="width: 15%; display: inline-block; text-align: center; justify-content: center; vertical-align: center">
<img src="av-assets/profile/sadia.jpg" alt="" style="display: inline-block; width: 70%;border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
</div>
<!--left aligned -->
<div class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-right: 0px;">
<div style="width: 15%; display: inline-block; text-align: center; vertical-align: center">
<img src="av-assets/profile/ibu.jpg" alt="" style="display: inline-block; width: 70%; border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
<div style="width: 85%;justify-content: center; display: flex; flex-direction: column; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: left; font-size: 14px;margin: 0px; padding: 0px;">Muhammad Ibrahim</p>
<p style="color: white; text-align: left; font-size: 12px;margin: 0px; padding: 0px;">Nayeem is a boy who is very talented.He is the most genius student in our departmen.And I think he is a person who has a lot of qualifications.He is the best programmer I have ever seen.And he is the best example of a good friend.</p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: left;">Ibrahim Described Nayeem in 3 Words: Energetic, Active, Dedicated </p>
<div style="display: flex; justify-content: flex-end; margin: 0px; width: 30%; text-align: right;font-size: 12px;">
<p style="color: #FF1493; font-size: 12px;font-size:12px;">Contact Ibrahim:</p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/profile.php?id=100009148080117">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
</div>
</div>
</div>
<!--right aligned -->
<div class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-left: 0px;">
<div style="width: 85%;justify-content: center; display: flex; flex-direction: column; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: right; font-size: 14px;margin: 0px; padding: 0px;">Tafannum Tahiyat Ohi <sub>Data Analyst</sub></p>
<p style="color: white; text-align: right; font-size: 12px;margin: 0px; padding: 0px;">He's active. If 200% dedication had a face it would be Nayeem's face. Really love his motivation. Another thing's he knows how to keep himself happy by staying motivated. See most of us don't have that so we're dependent on others. He gad so much experience compared to his age. </p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<div style="display: flex; justify-content: flex-start; margin-right: 0px; width: 30%; text-align: left;font-size:12px;">Contact Tafannum:</p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/sultanohi">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: right;">Tafannum Described Nayeem in 3 Words: Insightful, Positive, Hardworking.</p>
</div>
</div>
<div style="width: 15%; display: inline-block;text-align: center; justify-content: center; vertical-align: center">
<img src="av-assets/profile/ohi.jpeg" alt="" style="display: inline-block; width: 70%;border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
</div>
<!--left aligned -->
<div class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-right: 0px;">
<div style="width: 15%; display: inline-block; text-align: center; vertical-align: center">
<img src="av-assets/profile/redwan.jpg" alt="" style="display: inline-block; width: 70%; border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
<div style="width: 85%;justify-content: center; display: flex; flex-direction: column; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: left; font-size: 14px;margin: 0px; padding: 0px;">Mohammad Redwan Islam <sub>Software Engineer</sub></p>
<p style="color: white; text-align: left; font-size: 12px;margin: 0px; padding: 0px;">I have never seen a hard working person like you.So helpful,knows what to do,I mean you are confident about your steps.Last but not the least brilliant guy.</p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: left;">Redwan Described Nayeem in 3 Words: Energetic, Confident, Dedicated</p>
<div style="display: flex; justify-content: flex-end; margin: 0px; width: 30%; text-align: right;font-size: 12px;">
<p style="color: #FF1493; font-size: 12px;font-size:12px;">Contact Redwan:</p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/mohammad.r.islam.758">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
</div>
</div>
</div>
<!--right aligned -->
<div class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-left: 0px;">
<div style="width: 85%;justify-content: center; display: flex; flex-direction: column; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: right; font-size: 14px;margin: 0px; padding: 0px;">Oliur Rahman Dipu,<sub>Organizing Secretary,BUTEXDC</sub></p>
<p style="color: white; text-align: right; font-size: 12px;margin: 0px; padding: 0px;">
He struggled a lot in his life.But he never give up.He is hard working and talented person. He knows what he have to do.Finally he is honest and trustworthy also.
</p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<div style="display: flex; justify-content: flex-start; margin-right: 0px; width: 30%; text-align: left;font-size:12px;">Contact Oliur:</p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/oliurrahman19149a">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: right;">Oliur Described Nayeem in 3 Words: Energetic, Hard Working, Honest</p>
</div>
</div>
<div style="width: 15%; display: inline-block;text-align: center; justify-content: center; vertical-align: center">
<img src="av-assets/profile/dipu.jpg" alt="" style="display: inline-block; width: 70%;border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
</div>
<!--left aligned -->
<div class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-right: 0px;">
<div style="width: 15%; display: inline-block; text-align: center; vertical-align: center">
<img src="av-assets/profile/arpa.jpg" alt="" style="display: inline-block; width: 70%; border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
<div style="width: 85%;justify-content: center; display: flex; flex-direction: column; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: left; font-size: 14px;margin: 0px; padding: 0px;">Rawnak Zahan</p>
<p style="color: white; text-align: left; font-size: 12px;margin: 0px; padding: 0px;">He is talented and hardworking person.He is also friendly and helpful.He works with honesty.I wish him to be successful and all his dreams come true.</p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: left;">Rawnak Described Nayeem in 3 Words: Dedicated, Cooperative, Optimistic. </p>
<div style="display: flex; justify-content: flex-end; margin: 0px; width: 30%; text-align: right;font-size: 12px;">
<p style="color: #FF1493; font-size: 12px;font-size:12px;">Contact Rawnak:</p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/monami.arpa.98">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
</div>
</div>
</div>
<!--right aligned -->
<div class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-left: 0px;">
<div style="width: 85%;justify-content: center; display: flex; flex-direction: column; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: right; font-size: 14px;margin: 0px; padding: 0px;">Ismat Ara Shama <sub>Graphics Designer, Upwork</sub></p>
<p style="color: white; text-align: right; font-size: 12px;margin: 0px; padding: 0px;">He is the most talented person. He have all the best qualities to be a best CEO. I hope that I'll see him in a CEO position very soon In-sha-Allah. </p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<div style="display: flex; justify-content: flex-start; margin-right: 0px; width: 30%; text-align: left;font-size:12px;">Contact Shama:</p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/ismatarashama182">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: right;">Shama Described Nayeem in 3 Words: Dedicated, Super Active, Energetic, and also a Kind Hearted Person.</p>
</div>
</div>
<div style="width: 15%; display: inline-block;text-align: center; justify-content: center; vertical-align: center">
<img src="av-assets/profile/shama.jpg" alt="" style="display: inline-block; width: 70%;border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
</div>
<!--left aligned -->
<div class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-right: 0px;">
<div style="width: 15%; display: inline-block; text-align: center; vertical-align: center">
<img src="av-assets/profile/nayeema.jpg" alt="" style="display: inline-block; width: 70%; border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
<div style="width: 85%;justify-content: center; display: flex; flex-direction: column; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: left; font-size: 14px;margin: 0px; padding: 0px;">Nayeema Ferdous <sub>Android Developer, JU</sub></p>
<p style="color: white; text-align: left; font-size: 12px;margin: 0px; padding: 0px;">He is a nice person, friendly and also a brilliant minded . I find him a Career oriented guy who always try to do better in his future... Wish him All the best.. May Allah fulfil all wishes of Nayeem.... </p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: left;">Nayeema Described Nayeem in 3 Words: Hardworking, Passionate, Energetic </p>
<div style="display: flex; justify-content: flex-end; margin: 0px; width: 30%; text-align: right;font-size: 12px;">
<p style="color: #FF1493; font-size: 12px;font-size:12px;">Contact Nayeema:</p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/nayema.ferdous.54">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
</div>
</div>
</div>
<!--right aligned -->
<div class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-left: 0px;">
<div style="width: 85%;justify-content: center; display: flex; flex-direction: column; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: right; font-size: 14px;margin: 0px; padding: 0px;">Miftahul Jannat <sub>Clinical Consultant, Neuinfer</sub></p>
<p style="color: white; text-align: right; font-size: 12px;margin: 0px; padding: 0px;">he is a nice and productive ,talent guy.her knowledge of power is incridible</p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<div style="display: flex; justify-content: flex-start; margin-right: 0px; width: 30%; text-align: left;font-size:12px;">Contact Miftahul:</p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/profile.php?id=100005447506360">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: right;">Miftahul Described Nayeem in 3 Words: Energitic, Active and Dedicated</p>
</div>
</div>
<div style="width: 15%; display: inline-block;text-align: center; justify-content: center; vertical-align: center">
<img src="av-assets/profile/miftu.jpg" alt="" style="display: inline-block; width: 70%;border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
</div>
<!--left aligned -->
<div class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-right: 0px;">
<div style="width: 15%; display: inline-block; text-align: center; vertical-align: center">
<img src="av-assets/profile/meem.jpg" alt="" style="display: inline-block; width: 70%; border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
<div style="width: 85%; justify-content: center;display: flex; flex-direction: column; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: left; font-size: 14px;margin: 0px; padding: 0px;">Jannat Meem</p>
<p style="color: white; text-align: left; font-size: 12px;margin: 0px; padding: 0px;">
He is very talented person.He is so friendly & nice.
</p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: left;">Jannat Described Nayeem in 3 Words: Friendly,Intelligent,Enthusiastic</p>
<div style="display: flex; justify-content: flex-end; margin: 0px; width: 30%; text-align: right;font-size: 12px;">
<p style="color: #FF1493; font-size: 12px;font-size:12px;">Contact Jannat:</p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/jannat.meem.50">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
</div>
</div>
</div>
<!--right aligned -->
<div class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-left: 0px;">
<div style="width: 85%;justify-content: center; display: flex; flex-direction: column; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: right; font-size: 14px;margin: 0px; padding: 0px;">Khalid saifullah <sub>Web Developer,Upwork</sub></p>
<p style="color: white; text-align: right; font-size: 12px;margin: 0px; padding: 0px;">He is a very hard working person.Very realistic.A good human being and co-operative. I wish a better future and God will save him.
</p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<div style="display: flex; justify-content: flex-start; margin-right: 0px; width: 30%; text-align: left;font-size:12px;">Contact Khalid:</p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/profile.php?id=100014228044353">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: right;">Khalid Described Nayeem in 3 Words: Passionate,Brave,Dedicated</p>
</div>
</div>
<div style="width: 15%; display: inline-block;text-align: center; justify-content: center; vertical-align: center">
<img src="av-assets/profile/khalid.jpg" alt="" style="display: inline-block; width: 70%;border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
</div>
<!--left aligned -->
<div class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-right: 0px;">
<div style="width: 15%; display: inline-block; text-align: center; vertical-align: center">
<img src="av-assets/profile/akhi.jpg" alt="" style="display: inline-block; width: 70%; border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
<div style="width: 85%;justify-content: center; display: flex; flex-direction: column; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: left; font-size: 14px;margin: 0px; padding: 0px;">Zinnatul Fardous Akhi</p>
<p style="color: white; text-align: left; font-size: 12px;margin: 0px; padding: 0px;">Super talented person. His perseverance will get him to his goal. Regularity is a special quality of him. Disciplined man.</p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: left;">Zinnatul Described Nayeem in 3 Words: Brilliant, Devoted, Active.</p>
<div style="display: flex; justify-content: flex-end; margin: 0px; width: 30%; text-align: right;font-size: 12px;">
<p style="color: #FF1493; font-size: 12px;font-size:12px;">Contact Zinnatul:</p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/ami.tukunjil">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
</div>
</div>
</div>
<!--right aligned -->
<div class="col-sm-12 col-md-12 col-lg-10" style="display: flex;justify-content: center;padding-left: 0px;">
<div style="width: 85%;justify-content: center; display: flex; flex-direction: column; ">
<div style="width: 100%; height: auto; display: flex; flex-direction: column;">
<p style="color: #FF1493; text-align: right; font-size: 14px;margin: 0px; padding: 0px;">Fj praya <sub>Youtuber and Model</sub></p>
<p style="color: white; text-align: right; font-size: 12px;margin: 0px; padding: 0px;">Calm, passionate, leadership. </p>
</div>
<div style="width: 100%; height: auto; display: flex; justify-content: space-between; color: #FF1493; ">
<div style="display: flex; justify-content: flex-start; margin-right: 0px; width: 30%; text-align: left; font-size:12px;">Contact Preya:</p>
<a href="mailto:[email protected]">
<i class="fa fa-envelope" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
<a href="https://www.facebook.com/tanisha.afrinpreya">
<i class="fa fa-facebook" aria-hidden="true" style="width: 10px;margin: 0px 10px; height: 10px;"></i>
</a>
</div>
<p style="color: #FF1493; font-size: 12px; width: 70%; text-align: right;">Preya Described Nayeem in 3 Words: Active, Optimistic, Focused.</p>
</div>
</div>
<div style="width: 15%; display: inline-block;text-align: center; justify-content: center; vertical-align: center">
<img src="av-assets/profile/preya.jpg" alt="" style="display: inline-block; width: 70%;border-radius: 50%; vertical-align: center; margin: 25px 0px;">
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-12 col-lg-12" style="display: flex; flex-direction: column; background-color: black; height: auto; width: 100%; justify-content: center;">
<h1 class="col-sm-12 col-md-12 col-lg-12" style="color: #FF1493; font-size: 36px; font-family: 'Quicksand'; text-align: center; margin: 30px 0px 10px;">Thank You</h1>
<div style="display: block; justify-content: center;">
<div class="col-sm-12 col-md-12 col-lg-12" style="display: flex; padding: 0px 50px; flex-direction: column; background-color: black; height: auto; width: 100%; justify-content: center; text-align: center;">
<p class="col-sm-12 col-md-12 col-lg-12" style="font-size: 14px;font-family: 'Quicksand', sans-serif; color: white; text-align: center;">Can't express my gratitude to all of you guys who follow me through my social media appearance and real life. All of your appreciations reminds me the next generation of positive enthusiasts and their prominent cooperations. Thank you, God bless you all! <br>
</p>
</div>
</div>
</div>
<div id="download" class="col-sm-12 col-md-12 col-lg-12" style="display: flex; padding: 0px 50px; background-color: black; height: auto; width: 100%; justify-content: center; text-align: center;">
<a class="my-btn navbar-brand" data-aos="fade-down" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" class="btn on-link" href="https://docs.google.com/spreadsheets/d/1gNQ57eHmDPxLXi6TuHRpL7KsSHp7f6H69HZnMsbK7BA/edit?usp=sharing" style="font-size: 12px;font-family: 'Quicksand', sans-serif; width: 150px; height: auto;margin-bottom: 120px; margin-left: 0px; border-radius: 20px; padding: 10px 15px;">Download Excel <i class="fa fa-long-arrow-down" aria-hidden="true"></i></a>
</div>
<footer style="background-color: black" id="footer">
<div class="container">
<div class="row">
<div class="col-12 col-md-3">
<a class="navbar-brand" href="#footer" style=""><img src="av-assets/imgg/log.png"></a>
<div class="social-links">
<a id="linkedin" href="https://www.linkedin.com/in/mahmudul-hasan-nayeem-aa9090153/detail/recent-activity/" target="_blank" rel="noopener">
<i class="fa fa-linkedin" aria-hidden="true"></i></a>
<a id="facebook" href="https://www.facebook.com/profile.php?id=100011960434801" target="_blank" rel="noopener">
<i class="fa fa-facebook-square" aria-hidden="true"></i></a>
<a id="facebook" href="mailto:[email protected]" target="_blank" rel="noopener">
<i class="fa fa-envelope" aria-hidden="true"></i></a>
<a id="facebook" href="https://join.skype.com/invite/hhhoNhbgIoUz" target="_blank" rel="noopener">
<i class="fa fa-skype" aria-hidden="true"></i></a>
<a id="facebook" href="https://github.com/nayeem990" target="_blank" rel="noopener">
<i class="fa fa-github" aria-hidden="true"></i></a>
</div>
<p style="color: gray; font-size: 13px;">
For any official information or proposal write at [email protected]. For applying into projects/research kindly submit your cv.<br>
</p>
</div>
<div class="col-12 offset-md-3 col-md-3 links" style="color: gray; font-size: 12px;">
<p style="color: #FF1493"><b>Quicklinks</b></p>
<a target="_blank" href="accomplishments.html">Accomplishments | Gallery</a> <br>
<a target="_blank" href="education.html">Education | Specialization</a>
<br>
<a target="_blank" href="neuinfer.html">Neuinfer Inc</a>
<br><a target="_blank" href="papers.html">Papers & Publications</a>
<br><a target="_blank" href="https://youngbangla.org/2018/07/30/showcasing-tech-entrepreneurship-as-accomplishment/">Featured In News</a>
<br><a target="_blank" href="av-assets/Nayeem.pdf">Download CV</a>
</p>
</div>
<div class="col-12 col-md-3 links" style="color: gray; font-size: 12px;">
<p style="color: #FF1493"><b>Projects</b></p>
<a target="_blank" href="https://youth.digital/hackathon/index.php">New Normal Virtual Hackathon</a> <br>
<a target="_blank" href="https://www.millenniumoceans.org/">Millennium Ocean 2020</a> <br>
<a href="http://www.childrensprize.org/the-prize/">The Children Prize 2020</a><br>
<a target="_blank" href="https://www.msazurevirtualhack.com/">Microsoft Azure Virtual Hackathon 2020</a> <br>
<a target="_blank" href="st.youthop.com/write2fight/?fbclid=IwAR3SbvLlOaPAwG3YVXoU7K3h4TbCU1WUubzOrzAceGZMGW9R8BA8mJG5Gso">IPDC Yop National Writing Competition</a><br>
<a target="_blank" href="https://youth.digital/startkoro/">StartKoro Startup Bootcamp 2020</a> <br>