-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1791 lines (1489 loc) · 80.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
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>MIU CSE Fest - 2020</title>
<!-- Meta -->
<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="Manarat International University CSE Club going to arrange first tech fest which is MIU CSE FEST 2020">
<meta name="author" content="Xiaoying Riley at 3rd Wave Media">
<link rel="shortcut icon" href="logo-white.png">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:600,700,800|Roboto:300,400,700&display=swap" rel="stylesheet">
<!-- FontAwesome JS-->
<script defer src="assets/fontawesome/js/all.min.js"></script>
<!-- Theme CSS -->
<link id="theme-style" rel="stylesheet" href="assets/css/theme.css">
<style>
.countdown-box span{
padding:3.5rem 1.5rem;
}
</style>
</head>
<body>
<header id="header" class="header fixed-top">
<div class="branding">
<div class="container-fluid">
<nav class="main-nav navbar navbar-expand-lg">
<div class="site-logo"><a class="scrollto" href="#hero-block"><img class="logo-icon" style="font-size-adjust: ; max-height: 50px max-width: 100px" src="logo-white.png" alt="logo"></a></div>
<div class="navbar-btn order-lg-2"><a class="btn btn-secondary" href="https://www.facebook.com/events/1401852043330606/" target="_blank">Event link</a></div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navigation" aria-controls="navigation" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div id="navigation" class="navbar-collapse collapse justify-content-lg-end mr-lg-3">
<ul class="nav navbar-nav">
<li class="nav-item"><a class="nav-link scrollto" href="#about-section">About</a></li>
<li class="nav-item"><a class="nav-link scrollto" href="#speakers-section">Speakers</a></li>
<li class="nav-item"><a class="nav-link scrollto" href="#schedule-section">Schedule</a></li>
<li class="nav-item"><a class="nav-link scrollto" href="#tickets-section">Tickets</a></li>
<li class="nav-item"><a class="nav-link scrollto" href="#venue-section">Venue</a></li>
<li class="nav-item"><a class="nav-link scrollto" href="#sponsors-section">Sponsors</a></li>
</ul><!--//nav-->
</div><!--//navabr-collapse-->
</nav><!--//main-nav-->
</div><!--//container-->
</div><!--//branding-->
</header><!--//header-->
<div id="hero-block" class="hero-block">
<div id="hero-carousel" class="hero-carousel carousel slide carousel-fade" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item-1 carousel-item active">
</div>
<div class="carousel-item-2 carousel-item">
</div>
<div class="carousel-item-3 carousel-item">
</div>
</div>
</div>
<div class="hero-block-mask"></div>
<div class="container">
<div class="hero-text-block">
<h1 class="hero-heading mb-2" >MIU CSE Fest 2020</h1>
<div class="hero-meta mb-3"><i class="far fa-calendar-alt mr-2"></i>14 - 15 March <i class="fas fa-map-marker-alt mx-2"></i>Ashulia Permanent Campus, Manarat International University</div>
<div class="hero-intro mb-4"> <p style="background-color: #098dcf; padding-left: 20px; font-style: bold; font-weight: bold; color: #b6d524">Organized by MIU CSE Club</p></div>
<!-- <div class="hero-cta"><a class="btn btn-primary btn-lg" href="https://themes.3rdwavemedia.com/bootstrap-templates/startup/devconf-free-bootstrap-4-conference-template-for-tech-conferences-and-events/" target="_blank">Get Tickets</a></div> -->
</div><!--//hero-text-block-->
</div><!--//container-->
</div><!--//hero-block-->
<div class="stats-block theme-bg-primary text-white py-4 text-center">
<div class="container">
<div class="row">
<div class="col-6 col-md-3">
<div class="item">
<div class="number">2000+</div>
<div class="unit">Attendees</div>
</div><!--//item-->
</div><!--//col-->
<div class="col-6 col-md-3">
<div class="item">
<div class="number">2</div>
<div class="unit">Days</div>
</div><!--//item-->
</div><!--//col-->
<div class="col-6 col-md-3">
<div class="item">
<div class="number">10+</div>
<div class="unit">Contest</div>
</div><!--//item-->
</div><!--//col-->
<div class="col-6 col-md-3">
<div class="item">
<div class="number">2+</div>
<div class="unit">Workshops and Seminars</div>
</div><!--//item-->
</div><!--//col-->
</div>
</div><!--//container-->
</div><!--//stats-block-->
<section id="about-section" class="about-section section theme-bg-light">
<div class="container">
<h3 class="section-heading text-center mb-3">About MIU CSE FEST 2020</h3>
<div class="section-intro single-col-max mx-auto mb-4">MIU CSE Club is happy to announce that we are going to arrange a two-day long first CSE FEST 2020 for ICT enthusiasts from different Universities, Colleges. In this program, we are arranging different events such as Programming Contest, Math Olympiad, ICT Olympiad, Gaming Contests, Software Project Showcasing, Hardware Project Showcasing, Idea Contest, Photography Contest, Videography Contest, seminar.
</div>
</div><!--//benefits-list-->
<div class="event-countdown text-center mb-3" >
<h4 class="countdown-intro mb-2 text-center mb-3">Event Starts In:</h4>
<div id="countdown-box" class="countdown-box" style="background-color: #b6d524; height:180px ; overflow:hidden;"></div>
</div><!--//event-countdown-->
<div class="about-cta text-center mb-5"><a class="btn btn-secondary btn-lg mb-5" href="https://www.facebook.com/miucseclub/" target="_blank">Join with us</a></div>
</div><!--//container-->
</section><!--//about-section-->
<section id="speakers-section" class="speakers-section section">
<div class="container">
<h3 class="section-heading text-center mb-3">Speakers</h3>
<div class="section-intro text-center single-col-max mx-auto mb-5">List your featured speakers here. You can provide more info about each speaker in the relevant modal windows.</div>
<div class="row">
<div class="col-12 col-md-6 col-lg-3 mb-4">
<div class="card rounded-0">
<a href="#modal-speaker-4" data-toggle="modal" data-target="#modal-speaker-4"><img src="assets/images/speakers/hanna.jpg" class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Shah Abdul Hannan</h5>
<div class="card-text mb-3">
<div class="meta">Former Secretary</div>
<div class="meta"><strong>Government of the People’s Republic of Bangladesh</strong></div>
</div><!--//card-text-->
<a href="#modal-speaker-4" data-toggle="modal" data-target="#modal-speaker-4">Read more →</a>
</div><!--//card-->
<div class="card-footer text-muted">
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a href="#"><i class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a href="#"><i class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a href="#"><i class="fab fa-github fa-fw"></i></a></li>
</ul><!--//social-list-->
</div>
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-md-6 col-lg-3 mb-4">
<div class="card rounded-0">
<a href="#modal-speaker-2" data-toggle="modal" data-target="#modal-speaker-2"><img src="assets/images/speakers/kaykobad.png" class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Mohammad Kaykobad</h5>
<div class="card-text mb-3">
<div class="meta">Computer scientist, educator, author, and columnist</div>
<div class="meta"><strong>Professor of computer science and engineering in BUET</strong></div>
</div><!--//card-text-->
<a href="#modal-speaker-2" data-toggle="modal" data-target="#modal-speaker-2">Read more →</a>
</div><!--//card-->
<div class="card-footer text-muted">
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a href="#"><i class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a href="#"><i class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a href="#"><i class="fab fa-github fa-fw"></i></a></li>
</ul><!--//social-list-->
</div>
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-md-6 col-lg-3 mb-4">
<div class="card rounded-0">
<a href="#modal-speaker-3" data-toggle="modal" data-target="#modal-speaker-3"><img src="assets/images/speakers/mahedi_hasan.png" class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Mahedi Hasan</h5>
<div class="card-text mb-3">
<div class="meta">Machine Learning Researcher and University lecturer</div>
<div class="meta">Research Interest: Deep Learning, Computer Vision </div>
<div class="meta"><strong>Manarat International University</strong></div>
</div>
<a href="#modal-speaker-3" data-toggle="modal" data-target="#modal-speaker-3">Read more →</a>
</div>
<div class="card-footer text-muted">
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a href="https://twitter.com/mahedi_61"><i class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a href="https://www.linkedin.com/in/mahedi-hasan-2a4117147/"><i class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a href="https://github.com/Mahedi-61"><i class="fab fa-github fa-fw"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3 mb-4">
<div class="card rounded-0">
<a href="#modal-speaker-1" data-toggle="modal" data-target="#modal-speaker-1"><img src="assets/images/speakers/sadman.jpg" class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Sadman Sadik</h5>
<div class="card-text mb-3">
<div class="meta">Chief Content Creator</div>
<div class="meta"><strong>Robi 10 Minute School</strong></div>
</div><!--//card-text-->
<a href="#modal-speaker-1" data-toggle="modal" data-target="#modal-speaker-1">Read more →</a>
</div><!--//card-->
<div class="card-footer text-muted">
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a href="#"><i class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a href="#"><i class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a href="#"><i class="fab fa-github fa-fw"></i></a></li>
</ul><!--//social-list-->
</div>
</div><!--//card-->
</div><!--//col-->
</div>
</div><!--//container-->
</section><!--//speakers-section-->
<section id="schedule-section" class="schedule-section section">
<div class="container">
<h3 class="section-heading text-center mb-5">Schedule</h3>
<!-- Nav tabs -->
<ul class="schedule-nav nav nav-pills nav-fill" id="myTab" role="tablist">
<li class="nav-item mr-2">
<a class="nav-link active" id="tab-1" data-toggle="tab" href="#tab-1-content" role="tab" aria-controls="tab-1-content" aria-selected="true">
<span class="heading">Day 1</span>
<span class="meta">(Sat 14, March)</span>
</a>
</li>
<li class="nav-item mr-2">
<a class="nav-link" id="tab-2" data-toggle="tab" href="#tab-2-content" role="tab" aria-controls="tab-2-content" aria-selected="true">
<span class="heading">Day 2</span>
<span class="meta">(Sun 15, March)</span>
</a>
</li>
</ul>
<!-- Tab panes -->
<div class="schedule-tab-content tab-content">
<div class="tab-pane active" id="tab-1-content" role="tabpanel" aria-labelledby="tab-1">
<div class="item item-talk">
<div class="meta">
<h4 class="time mb-3">9:00 Am - 11:00 AM</h4>
<div class="profile">
<a><img class="profile-image rounded-circle mb-2" src="assets/images/speakers/room.png" alt=""></a>
<div class="name"><a><strong>Seminar Room 101 - 102</strong></a></div>
</div><!--//profile-->
</div><!--//meta-->
<div class="content" >
<h3 class="title mb-3" style="background-color: #20c997; padding: 10px">Inauguration Ceremony</h3>
<div class="location mb-3"><i class="fas fa-map-marker-alt mr-2"></i>Seminar Room 101 and 102</div>
<div class="desc"><strong style="color: #007bff"><b>Special Guest :</b></b></strong><br>
<strong>Shah Abdul Hannan, </strong>
Chairman Board of Trustees (BOT), MIU<br>
And following members of BOT:<br>
<strong>Prof. A.T.M. Fazlul Haq, </strong>
Former Professor, University of Dhaka<br>
<strong>Prof. Chowdhury Mahmud Hasan, </strong>
Professor, University of Dhaka<br>
<strong>Prof. Dr. M. Umar Ali, </strong>
Former Professor, University of Rajshahi<br>
<strong>Prof. Dr. Mohammad Abdur Rob, </strong>
Professor, University of Dhaka<br>
<strong>Prof. Dr. Md. Mozammel Hoq, </strong>
Former Professor, University of Dhaka</div>
</div><!--//content-->
</div><!--//item-->
<div class="item item-talk">
<div class="meta">
<h4 class="time mb-3">11.00 AM - 1:00 PM</h4>
<div class="profile">
<a><img class="profile-image rounded-circle mb-2" src="assets/images/speakers/cse207.png" alt=""></a>
<div class="name"><a><strong>Room No: CSE - 207</strong></a></div>
</div><!--//profile-->
</div><!--//meta-->
<div class="content">
<h3 class="title mb-3" style="background-color: #20c997; padding: 10px">Math Olympiad (only for college student)</h3>
<div class="location mb-3"><i class="fas fa-map-marker-alt mr-2"></i>Room No: CSE - 207</div>
<div class="desc" style="padding-bottom: 5%"><strong>MIU CSE Club</strong> is welcoming students to participate in the Math Olympiad.<br><strong>Announcements:</strong> Participants must bring their respective <strong>Student IDs</strong> for verification purposes at the event.</div>
</div><!--//content-->
</div><!--//item-->
<div class="item item-talk">
<div class="meta">
<h4 class="time mb-3">2.00 PM - 3:00 PM</h4>
<div class="profile">
<a><img class="profile-image rounded-circle mb-2" src="assets/images/speakers/room.png" alt=""></a>
<div class="name"><a><strong>Seminar Room 101 and 102</strong></a></div>
</div><!--//profile-->
</div><!--//meta-->
<div class="content">
<h3 class="title mb-3" style="background-color: #20c997; padding: 10px">ICT Olympiad (only for college student)</h3>
<div class="location mb-3"><i class="fas fa-map-marker-alt mr-2"></i>Seminar Room 101 and 102</div>
<div class="desc" style="padding-bottom: 5%"><strong>MIU CSE Club</strong> is welcoming students to participate in the ICT Olympiad.<br><strong>Announcements:</strong> Participants must bring their respective <strong>Student IDs</strong> for verification purposes at the event.</div>
</div><!--//content-->
</div><!--//item-->
<div class="item item-talk">
<div class="meta">
<h4 class="time mb-3">3.00 PM - 5:00 PM</h4>
<div class="profile">
<a><img class="profile-image rounded-circle mb-2" src="assets/images/speakers/room.png" alt=""></a>
<div class="name"><a><strong>Seminar Room 101 and 102</strong></a></div>
</div><!--//profile-->
</div><!--//meta-->
<div class="content">
<h3 class="title mb-3" style="background-color: #20c997; padding: 10px">Seminar with Mohammad Kaykobad - <strong>Topic: Data Structure and Algorithms</strong></h3>
<div class="location mb-3"><i class="fas fa-map-marker-alt mr-2"></i>Room No: CSE - 207</div>
<div class="desc" style="padding-bottom: 7%">Seminar with Mohammad Kaykobad and Price giving ceremony Math Olympiad and ICT Olympiad</div>
</div><!--//content-->
</div><!--//item-->
<div class="item item-talk">
<div class="meta">
<h4 class="time mb-3">A day-long</h4>
<div class="profile">
<a><img class="profile-image rounded-circle mb-2" src="assets/images/speakers/room.png" alt=""></a>
<div class="name"><a><strong>MIU Play Ground</strong></a></div>
</div><!--//profile-->
</div><!--//meta-->
<div class="content">
<h3 class="title mb-3" style="background-color: #20c997; padding: 10px">Project showcase</h3>
<div class="location mb-3"><i class="fas fa-map-marker-alt mr-2"></i>Room No: CSE - 207</div>
<div class="desc" style="padding-bottom: 7%">Participants will have to participate with their team which maximum three (3) members.<br>
The competition is open for all CSE and EEE students of MIU.</div>
</div><!--//content-->
</div><!--//item-->
</div><!--//tab-1-content-->
<div class="tab-pane" id="tab-2-content" role="tabpanel" aria-labelledby="tab-2">
<!-- <div class="item item-talk">
<div class="meta">
<h4 class="time mb-3">9.00 AM - 10:00 PM</h4>
<div class="profile">
<a><img class="profile-image rounded-circle mb-2" src="assets/images/speakers/cse207.png" alt=""></a>
<div class="name"><a><strong>Mandip Gorai</strong></a></div>
</div>
</div>
<div class="content">
<h3 class="title mb-3">Seminar with Mandip Gorai</h3>
<div class="location mb-3"><i class="fas fa-map-marker-alt mr-2"></i>Seminar Room: 101-102</div>
<div class="desc" style="padding-bottom: 5%"><strong>MIU CSE Club</strong> is welcoming students to participate in the Seminar.<br><strong>Announcements:</strong> Topic: Computer Security with Internet Safety.</strong></div>
</div>
</div> -->
<div class="item item-talk">
<div class="meta">
<h4 class="time mb-3">10.00 AM - 11:00 AM</h4>
<div class="profile">
<a><img class="profile-image rounded-circle mb-2" src="assets/images/speakers/sadman.jpg" alt=""></a>
<div class="name"><a><strong>Sadman Sadiq</strong></a></div>
</div>
</div>
<div class="content">
<h3 class="title mb-3" style="background-color: #20c997; padding: 10px">Seminar with Sadman Sadik</h3>
<div class="location mb-3"><i class="fas fa-map-marker-alt mr-2"></i>Seminar Room: 101-102
</div>
<div class="desc" style="padding-bottom: 5%"><strong>MIU CSE Club</strong> is welcoming students to participate in the Seminar.<br>Topic: <b>Presenting Ideas!</b></strong><br>
That includes: PowerPoint Slides, Pitch decks, Visualization, Idea Formulating
</div>
</div>
</div>
<div class="item item-talk">
<div class="meta">
<h4 class="time mb-3">10.00 AM - 11:00 AM</h4>
<div class="profile">
<a><img class="profile-image rounded-circle mb-2" src="assets/images/speakers/mahedi_hasan.png" alt=""></a>
<div class="name"><a><strong>Mahedi Hasan</strong></a></div>
</div>
</div>
<div class="content">
<h3 class="title mb-3" style="background-color: #20c997; padding: 10px">Seminar with Mahedi Hasan</h3>
<div class="location mb-3"><i class="fas fa-map-marker-alt mr-2"></i>Seminar Room: 101-102</div>
<div class="desc" style="padding-bottom: 5%"><strong>MIU CSE Club</strong> is welcoming students to participate in the Seminar.<br><strong>Topic: </strong>Computer Security with Internet Safety.</strong></div>
</div>
</div>
<div class="item item-talk">
<div class="meta">
<h4 class="time mb-3">11.00 AM - 2:00 PM</h4>
<div class="profile">
<a><img class="profile-image rounded-circle mb-2" src="assets/images/speakers/room.png" alt=""></a>
<div class="name"><a><strong>Shahriar Hasan Jisun</strong></a></div>
</div>
</div>
<div class="content">
<h3 class="title mb-3" style="background-color: #20c997; padding: 10px">Seminar with Shahriar Hasan Jisun</h3>
<div class="location mb-3"><i class="fas fa-map-marker-alt mr-2"></i>Seminar Room: 101-102</div>
<div class="desc" style="padding-bottom: 5%"><strong>MIU CSE Club</strong> is welcoming students to participate in the Seminar.<br><strong>Topic: </strong> </strong>eCommerce emerging as the Future of Trade</div>
</div>
<div class="item item-talk">
<div class="meta">
<h4 class="time mb-3">3.00 PM - 7:00 PM</h4>
<div class="profile">
<a><img class="profile-image rounded-circle mb-2" src="assets/images/speakers/room.png" alt=""></a>
<div class="name"><a><strong>Seminar Room: 101 - 102</strong></a></div>
</div>
</div>
<div class="content">
<h3 class="title mb-3" style="background-color: #20c997; padding: 10px">Cultural Program</h3>
<div class="location mb-3"><i class="fas fa-map-marker-alt mr-2"></i>Seminar Room: 101-102</div>
<div class="desc" style="padding-bottom: 5%"><strong>MIU CSE Club</strong> is welcoming students to participate in the program.<br></div>
</div>
</div>
</div><!--//tab-2-content-->
</div><!--//schedule-tab-content-->
</div><!--//container-->
</section><!--//schedule-section-->
<section id="tickets-section" class="tickets-section section theme-bg-light">
<div class="container">
<h3 class="section-heading text-center mb-3">Registration</h3>
<!-- <div class="section-intro single-col-max mx-auto text-center mb-4">You can use 3rd party platforms such as <a class="theme-link" href="https://www.eventbrite.com/" target="_blank">eventbrite</a> and <a class="theme-link" href="https://www.tickettailor.com/" target="_blank">tickettailor</a> to sell your tickets.</div> -->
<div class="row pricing mb-5">
<div class="col-12 col-md-4 p-2 p-lg-4">
<div class="card card-special rounded-0 border-0" style="background-color: #b6d524">
<div class="card-body p-0">
<div class="heading text-center p-3">
<h4 class="text-white mb-0">Special Package for CSE Students of MIU Only</h4>
</div>
<div class="info p-3" style="background-color: #b6d524">
<div class="desc px-3" style="color: black">
<strong>MIU CSE Club</strong>is happy to announce that we are going to arrange a two-day long first CSE FEST 2020 for ICT enthusiasts from different Universities, Colleges.<br>
<strong style="color: #098dcf"> Announcements:</strong><br>
<span>♦</span> Participants must bring their respective Student IDs for verification purposes at the event. <br>
<strong style="color: #EC645E">Deadline for Registration and Payment:</strong> March 6, 2020 <br>
<strong style="color: #EC645E">Registration Fees for Competition: </strong> 500 BDT (PER PERSON)<br>
</div>
</div><!--//info-->
</div><!--//card-body-->
<div class="card-footer text-center">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalLong0">
Rules
</button> <a href="https://docs.google.com/forms/d/e/1FAIpQLSfxVx1y_6u0Ks3Ff12RyHJdXe4Ll4om3phvAgtS_wJf6vZhWA/viewform" target="_blank" class="btn btn-primary" style="background-color: green">Registration</a>
</div>
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-md-4 p-2 p-lg-4" >
<div class="card rounded-0 border-0" style="background-color: #b6d524">
<div class="card-body p-0" >
<div class="heading text-center p-3">
<h4 class="text-white mb-0">Inter-University Programming Contest</h4>
</div>
<div class="info p-3" style="background-color: #b6d524">
<div class="desc px-3" style="color: black">
<strong>MIU CSE Club</strong> is welcoming students to participate in Inter University Programming Competition. <br><!-- <strong style="color: #098dcf"> Announcements:</strong><br><span>♦</span> Participants must bring their respective Student IDs for verification purposes at the event. <br> --><strong style="color: #098dcf">Conditions:</strong><br><span>♦</span> Only the students of Universities is allowed to participant without limiting scope.<br><span>♦</span> Participants will have to participate with their team which minimum two(2) and maximum three (3) members.<br>
<strong style="color: #098dcf">You will get:</strong><br>
<span>♦</span> Badge<br>
<span>♦</span> Wrist Band<br>
<span>♦</span> Participation Certificate<br>
<strong style="color: #EC645E">Deadline for Registration and Payment:</strong> March 6 2020 <br>
<strong style="color: #EC645E">Registration Fees for Competition: </strong>1000 BDT (PER PERSON)<br>
<!-- <strong style="color: #098dcf">Rules and Regulations:</strong><br><span>♦</span> Total Contesting Hours is Five.<br>
<span>♦</span> A team will receive equal credit for solving a problem (passing all test cases - no partial credit), regardless of the difficulty level of that problem.<br>
<span>♦</span> Teams are ranked according to the total number of problem solved. Ties will be broken by the total penalty time for each team in ascending order.<br>
<span>♦</span> Judge details and contest platform will be declared very soon.<br>
<span>♦</span> Team can use printed materials or template or book. Maximum 20 pages of printed materials or template are allowed.<br>
<span>♦</span> Code printing facility will be available.<br>
<span>♦</span> Teams should not copy source codes from the internet. If the source codes of two teams are very similar because they copied from the same source (online or offline), they cannot present it as an excuse.<br> -->
</div>
</div><!--//info-->
</div><!--//card-body-->
<div class="card-footer text-center">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalLong1">Rules</button>
<a href="http://bit.ly/mctf_programming_contest" target="_blank" class="btn btn-primary" style="background-color: green">Registration</a>
</div>
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-md-4 p-2 p-lg-4">
<div class="card card-special rounded-0 border-0" style="background-color: #b6d524">
<div class="card-body p-0">
<div class="heading text-center p-3">
<h4 class="text-white mb-0">Gaming Contest</h4>
</div>
<div class="info p-3" style="background-color: #b6d524">
<div class="desc px-3" style="color: black">
<strong>MIU CSE Club</strong> is welcoming students to participate in the Gaming Contest.<br><strong>Game:</strong> PUBG, NFS, BEAT SABER <br>
<strong style="color: #098dcf"> NFS:</strong><br>
<span>♦</span> Elimination System<br>
<span>♦</span> Participants can’t bring their own peripherals for NFS<br>
<strong style="color: #098dcf"> Announcements:</strong><br>
<span>♦</span> Participants must bring their respective Student IDs for verification purposes at the event. <br>
<strong style="color: #EC645E">Deadline for Registration and Payment:</strong> March 6, 2020 <br>
<strong style="color: #EC645E">Registration Fees for Competition: </strong> 200 BDT (PER PERSON)<br>
</div>
</div><!--//info-->
</div><!--//card-body-->
<div class="card-footer text-center">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalLong2">
Rules </button><a href="https://bit.ly/mctf_gaming_contest" target="_blank" class="btn btn-primary" style="background-color: green">Registration</a>
</div>
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-md-4 p-2 p-lg-4">
<div class="card rounded-0 border-0" style="background-color: #b6d524">
<div class="card-body p-0">
<div class="heading text-center p-3">
<h4 class="text-white mb-0">Math Olympiad (only for college student)</h4>
</div>
<div class="info p-3" style="background-color: #b6d524">
<div class="desc px-3" style="color: black">
<strong>MIU CSE Club</strong> is welcoming students to participate in the Math Olympiad.<br>
<strong style="color: #098dcf"> Announcements:</strong><br>
<span>♦</span> Participants must bring their respective Student IDs for verification purposes at the event. <br>
<!-- <strong style="color: #098dcf">Conditions:</strong><br>
<span>♦</span> Only the students of School and College are allowed to participate without limiting the scope.<br>
<span>♦</span> Security clearance is necessary for every participant.<br>
<span>♦</span> Participants will need to participate individually.<br> -->
<strong style="color: #098dcf">You will get:</strong><br>
<span>♦</span> Badge<br>
<span>♦</span> Wrist Band<br>
<span>♦</span> T-Shirt<br>
<span>♦</span> Lunch<br>
<strong style="color: #EC645E">Deadline for Registration and Payment:</strong> March 6 2020 <br>
<strong style="color: #EC645E">Registration Fees for Competition: </strong> BDT (PER PERSON)<br>
</div>
</div><!--//info-->
</div><!--//card-body-->
<div class="card-footer text-center">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalLong3">Rules
</button><a href="http://bit.ly/mctf-math_olympiad"class="btn btn-primary" target="_blank" style="background-color: green">Registration</a>
</div>
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-md-4 p-2 p-lg-4">
<div class="card rounded-0 border-0" style="background-color: #b6d524">
<div class="card-body p-0">
<div class="heading text-center p-3">
<h4 class="text-white mb-0">ICT Olympiad(only for college student)</h4>
</div>
<div class="info p-3" style="background-color: #b6d524">
<div class="desc px-3" style="color: black">
<strong>MIU CSE Club</strong> is welcoming students to participate in the ICT Olympiad.<br>
<strong style="color: #098dcf"> Announcements:</strong><br>
<span>♦</span> Participants must bring their respective Student IDs for verification purposes at the event. <br>
<strong style="color: #098dcf">You will get:</strong><br>
<span>♦</span> Badge<br>
<span>♦</span> Wrist Band<br>
<span>♦</span> T-Shirt<br>
<span>♦</span> Lunch<br>
<strong style="color: #EC645E">Deadline for Registration and Payment:</strong> March 6, 2020 <br>
<strong style="color: #EC645E">Registration Fees for Competition: </strong> BDT (PER PERSON)<br>
</div>
</div><!--//info-->
</div><!--//card-body-->
<div class="card-footer text-center">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalLong4">
Rules
</button><a href="http://bit.ly/mctf_ict_olympiad" class="btn btn-primary" style="background-color: green">Registration</a>
</div>
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-md-4 p-2 p-lg-4">
<div class="card rounded-0 border-0" style="background-color: #b6d524">
<div class="card-body p-0">
<div class="heading text-center p-3">
<h4 class="text-white mb-0">Project Showcase</h4>
</div>
<div class="info p-3" style="background-color: #b6d524">
<div class="desc px-3" style="color: black">
<strong>MIU CSE Club</strong> is welcoming students to participate in Project Showcase.<br>
<strong style="color: #098dcf">Conditions:</strong><br>
<span>♦</span> Participants will have to participate with their team which maximum three (3) members.<br>
<span>♦</span>The competition is open for all CSE and EEE students of MIU.<br>
<strong style="color: #EC645E">Deadline for Registration and Payment:</strong> March 6, 2020 <br>
<strong style="color: #EC645E">Registration Fees for Competition: </strong> 500 BDT (PER PERSON)<br>
</div>
</div><!--//info-->
</div><!--//card-body-->
<div class="card-footer text-center">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalLong5">
Rules
</button>
<a href="http://bit.ly/mctf_project_showcase" target="_blank" class="btn btn-primary" style="background-color: green">Registration</a>
</div>
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-md-4 p-2 p-lg-4">
<div class="card rounded-0 border-0" style="background-color: #b6d524">
<div class="card-body p-0">
<div class="heading text-center p-3">
<h4 class="text-white mb-0">Tech Idea Contest</h4>
</div>
<div class="info p-3" style="background-color: #b6d524">
<div class="desc px-3" style="color: black">
<strong>MIU CSE Club</strong> is welcoming students to participate in Innovative Idea Poster Competition.<br>
<strong style="color: #098dcf"> Announcements:</strong><br>
<span>♦</span> Participants must bring their respective Student IDs for verification purposes at the event and also participants are requested to bring multiplug.<br>
<span>♦</span>You have to present/summarize your idea in a poster.
<strong style="color: #EC645E">Deadline for Registration and Payment:</strong> March 6, 2020 <br>
<strong style="color: #EC645E">Registration Fees for Competition: </strong> 200 BDT (PER PERSON)<br>
</div>
</div><!--//info-->
</div><!--//card-body-->
<div class="card-footer text-center">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalLong6">
Rules
</button><a href="https://docs.google.com/forms/d/e/1FAIpQLSd_kuqlGHT8bifA0nduQbqZV-mgfDk-XsFZjeKm92XyilYvmg/viewform" target="_blank" class="btn btn-primary" style="background-color: green">Registration</a>
</div>
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-md-4 p-2 p-lg-4">
<div class="card rounded-0 border-0" style="background-color: #b6d524">
<div class="card-body p-0">
<div class="heading text-center p-3">
<h4 class="text-white mb-0">Photography Contest</h4>
</div>
<div class="info p-3" style="background-color: #b6d524">
<div class="desc px-3" style="color: black" >
<strong>MIU CSE Club</strong> is welcoming students to show their Photographic skills.<br>
<strong style="color: #098dcf"> Photography Theme:</strong><br>
<span>♦</span> MIU permanent Campus. You can click any picture but the clicked picture must be in the campus.<br>
<strong style="color: #098dcf">Registration and Photo Submission:</strong><br>
<span>♦</span> You have to post your clicked picture in the event page.<br>
<strong style="color: #098dcf">Conditions:</strong><br>
<span>♦</span> Only the students of School, College, and Universities is allowed to participant in the Photo Contest without limiting scope.<br>
<span>♦</span> Security clearance is necessary for every participant.<br>
<strong style="color: #098dcf">Registration Fees for Photo Contest:</strong>
<span>♦</span> It’s totally FREE.<br>
<strong style="color: #EC645E">Deadline for Registration and Payment:</strong> March 6, 2020 <br>
</div>
</div><!--//info-->
</div><!--//card-body-->
<div class="card-footer text-center">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalLong7">
Rules
</button><a href="http://bit.ly/mctf_photography" target="_blank" class="btn btn-primary" style="background-color: green">Registration</a>
</div>
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-md-4 p-2 p-lg-4">
<div class="card rounded-0 border-0" style="background-color: #b6d524">
<div class="card-body p-0">
<div class="heading text-center p-3">
<h4 class="text-white mb-0">Videography Contest</h4>
</div>
<div class="info p-3" style="background-color: #b6d524">
<div class="desc px-3" style="color: black" >
<strong>MIU CSE Club</strong> is welcoming students to show their Photographic skills.<br>
<strong style="color: #098dcf"> Photography Theme:</strong><br>
<span>♦</span> MIU permanent Campus. You can click any picture but the clicked picture must be in the campus.<br>
<strong style="color: #098dcf">Registration and Photo Submission:</strong><br>
<span>♦</span> You have to post your clicked picture in the event page.<br>
<strong style="color: #098dcf">Conditions:</strong><br>
<span>♦</span> Only the students of School, College, and Universities is allowed to participant in the Photo Contest without limiting scope.<br>
<span>♦</span> Security clearance is necessary for every participant.<br>
<strong style="color: #098dcf">Registration Fees for Photo Contest:</strong>
<span>♦</span> It’s totally FREE.<br>
<strong style="color: #EC645E">Deadline for Registration and Payment:</strong> March 6, 2020 <br>
<strong style="color: #EC645E">Registration Fees for Competition: </strong> 200 BDT (PER PERSON)<br>
</div>
</div><!--//info-->
</div><!--//card-body-->
<div class="card-footer text-center">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalLong8">
Rules
</button><a href="https://forms.gle/2SPZD7KKuKkrgURt7" target="_blank" class="btn btn-primary" style="background-color: green">Registration</a>
</div>
</div><!--//card-->
</div><!--//col-->
<div class="col-12 col-md-4 p-2 p-lg-4">
<div class="card rounded-0 border-0" style="background-color: #b6d524">
<div class="card-body p-0">
<div class="heading text-center p-3">
<h4 class="text-white mb-0">Seminars</h4>
</div>
<div class="info p-3" style="background-color: #b6d524">
<div class="desc px-3" style="color: black" >
<strong>MIU CSE Club</strong> is welcoming students to attend several seminars.<br>
<strong style="color: #098dcf"> Seminars Topics:</strong><br>
<span>♦</span> <br>
<strong style="color: #098dcf">Registration:</strong><br>
<span>♦</span> You have to registration below link.<br>
<strong style="color: #098dcf">Conditions:</strong><br>
<span>♦</span> Only the students of School, College, and Universities is allowed to participant in the seminars.<br>
<span>♦</span> Security clearance is necessary for every participant.<br>
<strong style="color: #098dcf">Registration Fees for seminars:</strong>
<span>♦</span><br>
<strong style="color: #EC645E">Deadline for Registration and Payment:</strong> 6 March, 2020 <br>
<strong style="color: #EC645E">Registration Fees for Competition: </strong> 200 BDT (PER PERSON)<br>
</div>
</div><!--//info-->
</div><!--//card-body-->
<div class="card-footer text-center">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal9">
Rules
</button><a href="http://bit.ly/mctf_seminar" target="_blank" class="btn btn-primary" style="background-color: green">Registration</a>
</div>
</div><!--//card-->
</div><!--//col-->
</div><!--//pricing-->
<!-- <div class="offers text-center bg-white p-4 p-lg-5">
<h4 class="mb-3">What's included?</h4>
<ul class="offers-list list-unstyled d-inline-block mx-auto text-left">
<li><span class="icon-holder mr-2"><i class="fas fa-user-tie"></i></span>60+ talks from industry-leading speakers</li>
<li><span class="icon-holder mr-2"><i class="fas fa-people-carry"></i></span>Access to 40+ workshops</li>
<li><span class="icon-holder mr-2"><i class="fas fa-glass-cheers"></i></span>Amazing after-parties</li>
<li><span class="icon-holder mr-2"><i class="fas fa-utensils"></i></span>FREE drinks, refreshments, lunch and dinner</li>
<li><span class="icon-holder mr-2"><i class="fas fa-tshirt"></i></span>FREE <a href="https://made4dev.com/" target="_blank">premium developer tees from made4dev</a></li>
<li><span class="icon-holder mr-2"><i class="fas fa-book"></i></span>FREE Udemy courses</li>
<li><span class="icon-holder mr-2"><i class="fas fa-gift"></i></span>FREE <a href="https://themes.3rdwavemedia.com/freebies/" target="_blank">Bootstrap templates and digital resources</a> for developers worth over $100</li>
</ul>offers-list
</div>//offers -->
</div><!--//container-->
</section><!--//tickets-section-->
<section id="venue-section" class="venue-section section theme-bg-primary text-white">
<div class="container">
<h3 class="section-heading text-center mb-5 text-white">Venue</h3>
<div class="row py-lg-5">
<div class="col-12 col-lg-7 h-100">
<div class="desc">
<h4 class="text-white mb-3">Ashulia Permanent Campus, Manarat International University</h4>
<section id="google-map-area">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3648.3846495491835!2d90.3107898!3d23.8759753!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755c213b785c80f%3A0x160471c997db5233!2sManarat%20International%20University!5e0!3m2!1sen!2sbd!4v1582688494012!5m2!1sen!2sbd" width="100%" height="450" frameborder="0" style="border:0;" allowfullscreen=""></iframe>
</div>
</div>
</div>
</section>
<h4 class="text-white mb-4 mt-3 mt-lg-5">Contact with US</h4>
<p>Manarat International University, Permanent Campus<br> Ashulia Model Town, Khagan, Ashulia<br> - Dhaka <br> E-mail: [email protected]<br> Facebook: <a href="www.facebook.com/miucseclub" style="color: white">MIU CSE Club<br></a>Contact: +88015*******</p>
<a class="btn btn-ghost" href="https://www.google.com/maps/dir//Manarat+International+University,+N511+Birulia-Akran+Rd,+1343,+Bangladesh/@23.8355198,90.2958821,13z/data=!4m8!4m7!1m0!1m5!1m1!1s0x3755c213b785c80f:0x160471c997db5233!2m2!1d90.3109781!2d23.8760113">Find Destination</a>
</div><!--//desc-->
</div><!--//col-->
<div class="col-12 col-lg-4 offset-lg-1 position-relative h-100 mt-5 mt-lg-0">
<div class="figures-holder">
<div class="figure figure-1"><img class="shadow" src="assets/images/venue/manarat_6.jpg" alt=""></div>
<!-- <div class="figure figure-2"><img class="shadow" src="assets/images/venue/manarat_5.jpg" alt=""></div> -->
<div class="figure figure-3"><img class="shadow" src="assets/images/venue/manarat_4.jpg" alt=""></div>
<div class="figure figure-4"><img class="shadow" src="assets/images/venue/manarat_2.jpg" alt=""></div>
</div><!--//figures-holder-->
</div><!--//col-->
</div><!--//row-->
</div><!--//container-->
</section><!--//venue-section-->
<section id="sponsors-section" class="sponsors-section section">
<div class="container">
<h3 class="section-heading text-center mb-3">Sponsors & Partners</h3>
<div class="section-intro text-center single-col-max mx-auto mb-5">Want to become a sponsor?</div>
<div class="row logos justify-content-center">
<!-- <div class="logo-item col-6 col-md-4 col-lg-2" style="max-width: 200px"><img src="assets/images/logos/club-logo.png" alt=""></div> -->
<!-- <div class="logo-item col-6 col-md-4 col-lg-2"><img src="assets/images/logos/bangla-fire.png" alt=""></div> -->
<div class="logo-item col-6 col-md-4 col-lg-2" style="max-width: 70%"><img src="assets/images/logos/a2i.png" alt=""></div>
<!-- <div class="logo-item col-6 col-md-4 col-lg-2"><img src="assets/images/logos/logo-6.svg" alt=""></div>
<div class="logo-item col-6 col-md-4 col-lg-2"><img src="assets/images/logos/logo-7.svg" alt=""></div>
<div class="logo-item col-6 col-md-4 col-lg-2"><img src="assets/images/logos/logo-8.svg" alt=""></div>
<div class="logo-item col-6 col-md-4 col-lg-2"><img src="assets/images/logos/logo-9.svg" alt=""></div>
<div class="logo-item col-6 col-md-4 col-lg-2"><img src="assets/images/logos/logo-10.svg" alt=""></div>
<div class="logo-item col-6 col-md-4 col-lg-2"><img src="assets/images/logos/logo-11.svg" alt=""></div>
<div class="logo-item col-6 col-md-4 col-lg-2"><img src="assets/images/logos/logo-12.svg" alt=""></div> -->
</div><!--//row-->
<div class="sponsors-cta text-center pt-5"><a class="btn-primary btn btn-lg" target="_blank" href="https://www.facebook.com/messages/t/243172996040504">Become A Sponsor</a></div>
</div><!--//container-->
</section><!--//sponsors-section-->
<footer class="footer py-5 theme-bg-primary">
<div class="container text-center">
<ul class="social-list list-inline mb-4">
<li class="list-inline-item mr-3"><a href="#"><i class="fas fa-envelope"></i></a></li>
<li class="list-inline-item mr-3"><a href="#"><i class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item mr-3"><a href="#"><i class="fab fa-instagram fa-fw"></i></a></li>
<li class="list-inline-item mr-0"><a href="#"><i class="fab fa-youtube fa-fw"></i></a></li>
</ul><!--//social-list-->
<ul class="footer-links list-inline mx-auto mb-4">
<!-- <li class="list-inline-item"><a href="#">Code of Conduct</a></li>
<li class="list-inline-item">|</li>
<li class="list-inline-item"><a href="#">Terms</a></li>
<li class="list-inline-item">|</li>
<li class="list-inline-item mr-0"><a href="#">Privacy</a></li> -->
</ul><!--//footer-link-->
<!--/* This template is released under the Creative Commons Attribution 3.0 License. Please keep the attribution link below when using for your own project. Thank you for your support. :) If you'd like to use the template without the attribution, you can buy the commercial license via our website: themes.3rdwavemedia.com */-->
<small class="copyright">Designed <i class="fas fa-heart" style="color: #EC645E;"></i> by <a href="#" target="_blank">MIU CSE Club</a> with <a href="https://facebook.com/rdnasim">rdnasim</a></small>
</div><!--//container-->
</footer>
<!-- Modal Speaker -->
<div class="modal modal-speaker modal-speaker-4" id="modal-speaker-4" tabindex="-1" role="dialog" aria-labelledby="speaker-4-ModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 id="speaker-4-ModalLabel" class="modal-title sr-only">Speaker Name</h4>
</div>
<div class="modal-body p-0">
<div class="media flex-column flex-md-row theme-bg-light p-4 p-lg-5">
<img class="profile-image mb-3 mb-md-0 mr-md-4 rounded-circle mx-auto" src="assets/images/speakers/hannan.jpg" alt="" />
<div class="media-body text-center text-md-left mx-auto">
<h2 class="name mb-2">Shah Abdul Hannan</h2>
<div class="meta">Former Secretary</div>
<div class="meta mb-2">Government of the People’s Republic of Bangladesh</div>
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a href="#"><i class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a href="#"><i class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a href="#"><i class="fab fa-github fa-fw"></i></a></li>
</ul><!--//social-list-->
</div><!--//media-body-->
</div><!--//media-->
<div class="desc p-4 p-lg-5">
<p>Shah Abdul Hannan is a Bangladeshi Islamic philosopher, writer, economist, educator and media personality. He served as the deputy governor of the Bangladesh Bank and chairman of the National Board of Revenue. He was the founder vice chancellor of Darul Ihsan University, North South University, chairman of Board Of Trustees Of Manarat International University & Islamic Economics Research Bureau and the director of Islami Bank Bangladesh Ltd.</p>
</div>
</div><!--//modal-body-->
</div><!--//modal-content-->
</div><!--//modal-dialog-->
</div><!--//modal-->
<div class="modal modal-speaker modal-speaker-1" id="modal-speaker-1" tabindex="-1" role="dialog" aria-labelledby="speaker-1-ModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 id="speaker-1-ModalLabel" class="modal-title sr-only">Speaker Name</h4>
</div>
<div class="modal-body p-0">
<div class="media flex-column flex-md-row theme-bg-light p-4 p-lg-5">
<img class="profile-image mb-3 mb-md-0 mr-md-4 rounded-circle mx-auto" src="assets/images/speakers/sadman.jpg" alt="" />
<div class="media-body text-center text-md-left mx-auto">
<h2 class="name mb-2">Sadman Sadik</h2>
<div class="meta">Chief Content Creator</div>
<div class="meta mb-2">Robi 10 Minute School</div>
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a href="#"><i class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a href="#"><i class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a href="#"><i class="fab fa-github fa-fw"></i></a></li>
</ul><!--//social-list-->
</div><!--//media-body-->
</div><!--//media-->
<div class="desc p-4 p-lg-5">
<p>Sadman Sadik is an online educator and a best-selling author. Currently he's acting as the Chief Content Creator of the largest online education platform of Bangladesh 10 Minute School. He has worked with corporate clients like Bangladesh Brand Forum, Robi, IDLC, IPDC, Rokomari etc. He's one of the brand ambassadors of Samsung Mobile Bangladesh. He has published 4 books so far and has conducted training sessions in top educational institutions of Bangladesh.</p>
</div>
</div><!--//modal-body-->
</div><!--//modal-content-->
</div><!--//modal-dialog-->
</div><!--//modal-->
<!-- Modal Speaker -->
<div class="modal modal-speaker modal-speaker-2" id="modal-speaker-2" tabindex="-1" role="dialog" aria-labelledby="speaker-2-ModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 id="speaker-2-ModalLabel" class="modal-title sr-only">Speaker Name</h4>
</div>
<div class="modal-body p-0">
<div class="media flex-column flex-md-row theme-bg-light p-4 p-lg-5">
<img class="profile-image mb-3 mb-md-0 mr-md-4 rounded-circle mx-auto" src="assets/images/speakers/kaykobad.png" alt="" />
<div class="media-body text-center text-md-left mx-auto">
<h2 class="name mb-2">Mohammad Kaykobad</h2>
<div class="meta">Computer scientist, educator, author, and columnist</div>
<div class="meta mb-2">Professor of computer science and engineering in BUET</div>
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a href="#"><i class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a href="#"><i class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a href="#"><i class="fab fa-github fa-fw"></i></a></li>
</ul><!--//social-list-->
</div><!--//media-body-->
</div><!--//media-->
<div class="desc p-4 p-lg-5">
<p>Mohammad Kaykobad is a computer scientist, educator, author, and columnist from Bangladesh. Along with Muhammed Zafar Iqbal, he started the national mathematics olympiad. Currently he is a professor of computer science and engineering in Bangladesh University of Engineering and Technology. </p>
<!-- <p class="mb-0">Sadman Sadik is a best-selling author and an experienced online educator. He has published 3 books: Student Hacks, Communication Hacks and Brain Booster. He has over 1,000 educational videos and tutorials which have amassed millions of views. He is a graduate from Institute of Business Administration, University of Dhaka. Currently he’s the Chief Content Creator of 10 Minute School. His content library includes:
1. Student & Corporate Training Videos
2. Book Review Videos
3. Technology Videos
https://www.linkedin.com/in/sadmansadik/
Email: [email protected]</p> -->
</div>
</div><!--//modal-body-->
</div><!--//modal-content-->
</div><!--//modal-dialog-->
</div><!--//modal-->
<div class="modal modal-speaker modal-speaker-3" id="modal-speaker-3" tabindex="-1" role="dialog" aria-labelledby="speaker-3-ModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 id="speaker-3-ModalLabel" class="modal-title sr-only">Speaker Name</h4>
</div>
<div class="modal-body p-0">
<div class="media flex-column flex-md-row theme-bg-light p-4 p-lg-5">
<img class="profile-image mb-3 mb-md-0 mr-md-4 rounded-circle mx-auto" src="assets/images/speakers/mahedi_hasan.png" alt="" />
<div class="media-body text-center text-md-left mx-auto">
<h2 class="name mb-2">Mahedi Hasan</h2>
<div class="meta">Machine Learning Researcher and University lecturer</div>
<div class="meta">Research Interest: Deep Learning, Computer Vision</div>
<div class="meta mb-2">Manarat International University</div>
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a href="https://twitter.com/mahedi_61"><i class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a href="https://www.linkedin.com/in/mahedi-hasan-2a4117147/"><i class="fab fa-linkedin-in fa-fw"></i></a></li>