-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
840 lines (679 loc) · 32.7 KB
/
index.php
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
<!doctype html>
<html lang="en">
<head>
<!-- Meta, title, CSS, favicons, etc. -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>NSTUMUNA </title>
<link rel="shortcut icon" href="assets/icons/logo.png" type="image/icon">
<!-- Styles -->
<link rel='stylesheet' href='assets/css/bootstrap.min.css'>
<link rel='stylesheet' href='assets/css/animate.min.css'>
<link rel='stylesheet' href="assets/css/font-awesome.min.css"/>
<link rel='stylesheet' href="assets/css/style.css"/>
<!-- Fonts -->
<link href='http://fonts.googleapis.com/css?family=Raleway:200,300,400,500,600,700,800' rel='stylesheet' type='text/css'>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<!-- Favicon -->
</head>
<body>
<!-- Start Header
================================================== -->
<header id="header" class="navbar navbar-inverse navbar-fixed-top" role="banner">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".bs-navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- Your Logo -->
<a href="index.php" class="navbar-brand"> <span><img src="assets/icons/logoBig.png" alt=""></span> NSTUMUNA <span class="lighter"></span></a>
</div>
<!-- Start Navigation -->
<nav class="collapse navbar-collapse bs-navbar-collapse navbar-right" role="navigation">
<ul class="nav navbar-nav">
<li>
<a href="index.php#home">Home</a>
</li>
<li>
<a href="index.php#about">About</a>
</li>
<li>
<a href="index.php#administration">Administration</a>
</li>
<li>
<a href="index.php#gallery_front">Gallery</a>
</li>
<li>
<a href="index.php#membership">Membership</a>
</li>
<li>
<a href="index.php#events">Events</a>
</li>
<li>
<a href="index.php#academics">Academics</a>
</li>
<li>
<a href="index.php#news">News</a>
</li>
<li>
<a href="index.php#contact_us">Contact Us</a>
</li>
<li>
<a href="mun18.php">NSTUMUN 2018</a>
</li>
</ul>
</nav>
</div>
</header>
<section id="home" class="section" style="background-color: #01b0d1">
<div class="row">
<div class="col-md-12">
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
<li data-target="#carousel-example-generic" data-slide-to="3"></li>
<li data-target="#carousel-example-generic" data-slide-to="4"></li>
<li data-target="#carousel-example-generic" data-slide-to="5"></li>
<li data-target="#carousel-example-generic" data-slide-to="6"></li>
</ol>
<div class="carousel-inner">
<div class="item active">
<img src="assets/img/covers/_0.JPG" alt="First slide">
</div>
<div class="item">
<img src="assets/img/covers/0.JPG" alt="First slide">
</div>
<div class="item">
<img src="assets/img/covers/1.JPG" alt="Second slide">
</div>
<div class="item">
<img src="assets/img/covers/2.JPG" alt="Third slide">
</div>
<div class="item">
<img src="assets/img/covers/3.JPG" alt="Third slide">
</div>
<div class="item">
<img src="assets/img/covers/4.JPG" alt="Third slide">
</div>
<div class="item">
<img src="assets/img/covers/5.JPG" alt="Third slide">
</div>
</div>
<a class="left carousel-control" href="#carousel-example-generic" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span></a><a class="right carousel-control"
href="#carousel-example-generic" data-slide="next"><span class="glyphicon glyphicon-chevron-right">
</span></a>
</div>
<div class="main-text">
<div class="col-md-12 text-center">
<h1>
</h1>
<div>
<div class=" fxheight">
<img src="assets/img/logo_for_web.png" height="150" width="170" style="margin-top:12%; margin-bottom:2%;" alt="">
<h1 id="abc" class="wow bounceInDown" style="font-size:48px;font-family:agency fb" data-wow-duration="1s" data-wow-delay="0.1s">NSTU MODEL UNITED NATIONS ASSOCIATION<br></h1> <p>"Accept the Diplomacy"</p>
<a href="mun18.php" class="btn btn-default btn-sm wow fadeInLeft" role="button" style="margin-bottom:2%">NSTUMUN 2018</a>
<div class="row">
<div class="col-md-6 col-xs-12 col-md-offset-3">
<div id="clock"></div>
<div id="units">
<span>D</span>
<span>H</span>
<span>M</span>
<span>S</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About
-->
<!-- About us
================================================== -->
<section id="about" class="parallax section" style="background-image: url();">
<div class="wrapsection">
<div class="parallax-overlay" style="background-color: #01b0d1;opacity:0.9;"></div>
<div class="container">
<div class="row">
<div class="herotext "style="text-align:center;margin-bottom:80px">
<h1 class="wow bounceInDown" data-wow-duration="1s" data-wow-delay="0.1s"><span class="lighter">Message From <br></span>President</h1>
</div>
<div class="col-md-4 col-sm-6">
<img src="assets/img/sec_gen.jpg" style="margin-top:12px" alt="">
</div>
<div class="col-md-8 col-sm-6">
<div style="text-align:center" >
<p style="font-size:20px" class="lead bottom0 wow bounceInUp">Hello Good People,
</p>
<p style="font-size:20px" class="lead bottom0 wow bounceInUp">
Noakhali Science And Technology University Model United Nations Association, NSTUMUNA is an entity that doesn't only unify MUN enthusiasts, but also the robust souls of NSTU.
</p>
<p style="font-size:20px" class="lead bottom0 wow bounceInUp">
I feel extremely honoured to serve as a President of NSTUMUNA, from being the founding Organizing Secretary and also being the former General Secretary of this very organization it was never that easy, neither was it easy for assisting the founding President Ms. Fatema Tuj Anwar Bristy and the former President Mr. Mofasser Haider Bhuiyan Shakib in founding this very club, arranging Intra NSTUMUN 2016, enframing the dream of NSTUMUN 2017 and embracing the legacy with NSTUMUN 2018.
</p>
<p style="font-size:20px" class="lead bottom0 wow bounceInUp">
The journey started back in September of 2015. We had more or less 15 people with us forming a club that would encourage the young minds of NSTU to participate in this diverse platform of Model United Nations. As the days passed, the entity has gone bigger and greater with member number increasing to more than 50 by 2017. This faces has made NSTUMUNA broad, through their love, devotion and dedication. Each of them possess the quality of organizing, convincing, negotiating, excercise the art of great diplomacy with prioritizing knowledge by true means.
</p>
<p style="font-size:20px" class="lead bottom0 wow bounceInUp">
Model United Nations is an embodied podium of practicing the Model conference of United Nations, a platform that comes with a package of enhancing skills in every field needed to enlighten future of a person. Therefore we encourage students from NSTU and other institutions to do MUNs by arranging Conferances each year, inviting students from home and abroad.
</p>
<p style="font-size:20px" class="lead bottom0 wow bounceInUp">
NSTUMUNA will always try its level best to contribute for the global issues to be acknowledged and to build the skills that the global leaders posses for leading the country and making the world a better place.
</p>
<p style="font-size:20px;margin-bottom:100px" class="lead bottom0 wow bounceInUp">
Abdullah Al Mahmood<br>President<br>NSTUMUNA
</p>
</div>
</div>
</div>
<div style="background-color:#fff;width:100%; margin-bottom:100px">s </div>
<div class="wrapsection">
<div class="parallax-overlay" style="background-color: #01b0d1;opacity:0.9;"></div>
<div class="container">
<div class="row">
<div class="herotext "style="text-align:center;margin-bottom:80px">
<h1 class="wow bounceInDown" data-wow-duration="1s" data-wow-delay="0.1s"><span class="lighter">Message From <br></span>Adviser</h1>
</div>
<div class="col-md-4 col-sm-6">
<img src="assets/img/adviser.jpg" style="margin-top:12px" alt="">
</div>
<div class="col-md-8 col-sm-6">
<div style="text-align:center" >
<p style="font-size:20px" class="lead bottom0 wow bounceInUp">NSTUMUNA, a students' association of Noakhali Science and Technology University is one of the finest extra-curricular activities of students molded with the platform of practicing the art of diplomacy participating in Model United Nations Conferences, constantly trying to enhance the knowledge of students in the arena of global affairs and gaining personal skill and excellence by all means.
</p>
<p style="font-size:20px" class="lead bottom0 wow bounceInUp">
It has been quite a long time I have been serving as an adviser of this very renowned club in national community upholding the values of United Nations among the youth, not only for the students of NSTU but also students from the school and colleges of Noakhali Region. Through this 2 years I have seen continuous activities of this very club and most of them were outstanding. The mentionable ones are Intra NSTUMUN 2016 and NSTUMUN 2017. I'm sure that their next event, NSTUMUN 2018 will be a great one too.
</p>
<p style="font-size:20px" class="lead bottom0 wow bounceInUp">
Speaking of NSTUMUN 2018, I can see the great enthusiasm in the organizers of bringing up an even better conference scheduled from 29th of March to 1st April of 2018. I believe that four days long conference will also be a successful one. However, the students attending from all around the country or even foreign students who wish to come will receive grand hospitality, great quality and diverse knowledge of global issues. I'll always be wishing all the best to my students and providing them all the supports they need. Therefore, I'd would like to conclude with their moto of NSTUMUN 2018 - 'Upholding Humanity by Equitable Development'.
</p>
<p style="font-size:20px;margin-bottom:40px" class="lead bottom0 wow bounceInUp">
Mahabubur Rahman<br>
Assistant Professor<br>
Department of Fisheries and Marine Science<br>
Noakhali Science and Technology University<br>
and<br>
Adviser<br>
NSTU Model United Nations Association
</p>
</div>
</div>
</div>
<div style="background-color:#fff;width:100%; margin-bottom:100px">s </div>
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- Title -->
<div class="maintitle">
<h3 class="section-title"><strong>About US</span></strong></h3>
<p class="lead">
</p>
</div>
</div>
<div class="col-md-4 col-sm-6" style>
<div class="service-box wow zoomIn" data-wow-duration="1.5s" data-wow-delay="0.1s">
<img src="assets/img/history1.png" alt="">
<h3>Our History</h3>
<p class="text-center">
<button type="button" class="btn btn-info btn-md"><a href="history.php">Learn More</a></button>
</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="service-box wow zoomIn" data-wow-duration="1.5s" data-wow-delay="0.1s">
<img src="assets/img/mission_vision.png" alt="">
<h3>Mission and Vision</h3>
<p class="text-center">
<button type="button" class="btn btn-info btn-md"><a href="mission_vision.php">Learn More</a></button>
</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="service-box wow zoomIn" data-wow-duration="1.5s" data-wow-delay="0.1s">
<img src="assets/img/Activities.png" alt="">
<h3>Activities</h3>
<p class="text-center">
<button type="button" class="btn btn-info btn-md"><a href="activities.php">Learn More</a></button>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Administration
================================================== -->
<section id="administration" class="parallax section" style="background-image: url(assets/img/administration.jpg);">
<div class="wrapsection">
<div class="parallax-overlay"></div>
<div class="container">
<div class="maintitle">
<h3 class="section-title"><strong>Administration</span></strong></h3>
<p class="lead">
</p>
</div>
<div class="row">
<div class="col-md-4 col-sm-6">
<div class="service-box wow flipInY" data-wow-duration="1.5s" data-wow-delay="0.1s">
<!-- <span class="glyphicon glyphicon-stats"></span> -->
<img src="assets/img/committee_2016.jpg" alt="">
<h3>Committee 2015-2016</h3>
<button type="button" class="btn btn-info btn-md"><a href="table16.php">View Lists</a></button>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="service-box wow flipInY" data-wow-duration="1.5s" data-wow-delay="0.1s">
<!-- <span class="glyphicon glyphicon-stats"></span> -->
<img src="assets/img/committee_2017.jpg" alt="">
<h3>Committee 2016-2017</h3>
<button type="button" class="btn btn-info btn-md"><a href="table17.php">View Lists</a></button>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="service-box wow flipInY" data-wow-duration="1.5s" data-wow-delay="0.1s">
<!-- <span class="glyphicon glyphicon-stats"></span> -->
<img src="assets/img/committee_2018.jpg" alt="">
<h3>Committee 2017-2018</h3>
<button type="button" class="btn btn-info btn-md"><a href="table18.php">View Lists</a></button>
</div>
</div>
</div>
</div>
</section>
<!-- Gallery
================================================== -->
<section id="gallery_front" class="parallax section" >
<div class="wrapsection">
<div class="parallax-overlay" style="background-color:#00c1c1;opacity:0.9;"></div>
<div class="container">
<div class="maintitle">
<h3 class="section-title"><strong>Gallery</span></strong></h3>
<p class="lead">
</p>
</div>
<div class="row">
<div class="col-md-4 col-sm-6">
<div class="service-box wow flipInY" data-wow-duration="1.5s" data-wow-delay="0.1s">
<!-- <span class="glyphicon glyphicon-stats"></span> -->
<img src="assets/img/NSTU/1.jpg" alt="">
<h3>Beauty of NSTU</h3>
<button type="button" class="btn btn-info btn-md"><a href="gal_nstu.php">View Photoes</a></button>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="service-box wow flipInY" data-wow-duration="1.5s" data-wow-delay="0.1s">
<!-- <span class="glyphicon glyphicon-stats"></span> -->
<img src="assets/img/Trustee Board/cover.jpg" alt="">
<h3>Trustee Board</h3>
<button type="button" class="btn btn-info btn-md"><a href="gal_trustee.php">View Members</a></button>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="service-box wow flipInY" data-wow-duration="1.5s" data-wow-delay="0.1s">
<!-- <span class="glyphicon glyphicon-stats"></span> -->
<img src="assets/img/intra_nstumun_2016.jpg" alt="">
<h3>Intra NSTUMUN 2016</h3>
<button type="button" class="btn btn-info btn-md"><a href="intra_nstumun_2016.php">View Photoes</a></button>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="service-box wow flipInY" data-wow-duration="1.5s" data-wow-delay="0.1s">
<!-- <span class="glyphicon glyphicon-stats"></span> -->
<img src="assets/img/nstumun_17.jpg" alt="">
<h3>NSTUMUN 2017</h3>
<button type="button" class="btn btn-info btn-md"><a href="nstumun_2017.php">View Photoes</a></button>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="service-box wow flipInY" data-wow-duration="1.5s" data-wow-delay="0.1s">
<!-- <span class="glyphicon glyphicon-stats"></span> -->
<img src="assets\img\Recruitment 2016-17\3.jpg" alt="">
<h3>Recruitment 2016-17</h3>
<button type="button" class="btn btn-info btn-md"><a href="recruitment_2016-2017.php">View Photoes</a></button>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="service-box wow flipInY" data-wow-duration="1.5s" data-wow-delay="0.1s">
<!-- <span class="glyphicon glyphicon-stats"></span> -->
<img src="assets\img\Recruitment 2017-18\1.jpg" alt="">
<h3>Recruitment 2017-18</h3>
<button type="button" class="btn btn-info btn-md"><a href="recruitment_2017-2018.php">View Photoes</a></button>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="service-box wow flipInY" data-wow-duration="1.5s" data-wow-delay="0.1s">
<!-- <span class="glyphicon glyphicon-stats"></span> -->
<img src="assets\img\Delegations\3.jpg" alt="">
<h3>Delegations</h3>
<button type="button" class="btn btn-info btn-md"><a href="delegation.php">View Photoes</a></button>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="service-box wow flipInY" data-wow-duration="1.5s" data-wow-delay="0.1s">
<!-- <span class="glyphicon glyphicon-stats"></span> -->
<img src="assets\img\Awards\1.jpg" alt="">
<h3>Our Achievements</h3>
<button type="button" class="btn btn-info btn-md"><a href="awards.php">View Photoes</a></button>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="service-box wow flipInY" data-wow-duration="1.5s" data-wow-delay="0.1s">
<!-- <span class="glyphicon glyphicon-stats"></span> -->
<img src="assets/img/eb_members.jpg" alt="">
<h3>Executive Board Members</h3>
<button type="button" class="btn btn-info btn-md"><a href="executive_board_members.php">View Photoes</a></button>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="service-box wow flipInY" data-wow-duration="1.5s" data-wow-delay="0.1s">
<!-- <span class="glyphicon glyphicon-stats"></span> -->
<img src="assets/img/committee_2016.jpg" alt="">
<h3>Committee 2015-2016</h3>
<button type="button" class="btn btn-info btn-md"><a href="committee_2016.php">View Photoes</a></button>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="service-box wow flipInY" data-wow-duration="1.5s" data-wow-delay="0.1s">
<!-- <span class="glyphicon glyphicon-stats"></span> -->
<img src="assets/img/committee_2017.jpg" alt="">
<h3>Committee 2016-2017</h3>
<button type="button" class="btn btn-info btn-md"><a href="committee_2017.php">View Photoes</a></button>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="service-box wow flipInY" data-wow-duration="1.5s" data-wow-delay="0.1s">
<!-- <span class="glyphicon glyphicon-stats"></span> -->
<img src="assets/img/committee_2018.jpg" alt="">
<h3>Committee 2017-2018</h3>
<button type="button" class="btn btn-info btn-md"><a href="committee_2018.php">View Photoes</a></button>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="service-box wow flipInY" data-wow-duration="1.5s" data-wow-delay="0.1s">
<!-- <span class="glyphicon glyphicon-stats"></span> -->
<img src="assets/img/videos.jpg" alt="">
<h3>Videos</h3>
<button type="button" class="btn btn-info btn-md"><a href="https://www.youtube.com/channel/UC_E8pNF5R0XDIWl8XRCOlYQ?disable_polymer=true">View Videos</a></button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Membership
================================================== -->
<section id="membership" class="parallax section" style="background-image: url(assets/img/membership.jpg);">
<div class="wrapsection">
<div class="container">
<div class="maintitle">
<h3 class="section-title" style="margin-bottom:50px"><strong>Membership</span></strong></h3>
</div>
<div class="row">
<div class="col-md-12 " style="margin-bottom:20px">
<div class=" active">
<p class="text-center">
<a href="mem_criteria.php" class="btn btn-default btn-lg wow fadeInLeft" role="button"> Membership Criteria</a>
</p>
</div>
</div>
<div class="col-md-4">
<div class="active">
<p class="text-center">
<a href="rec_2016-17.php" class="btn btn-default btn-lg wow fadeInLeft" role="button"> Recruitment 2016-17</a>
</p>
</div>
</div>
<div class="col-md-4">
<div class=" active">
<p class="text-center"><a href="rec_2017-18.php" class="btn btn-default btn-lg wow fadeInLeft" role="button">Recruitment 2017-18</a>
</p>
</div>
</div>
<div class="col-md-4">
<div class=" active ">
<p class="text-center">
<a href="rec_2018-19.php" class="btn btn-default btn-lg wow fadeInLeft" role="button">Recruitment 2018-19</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Events
================================================== -->
<section id="events" class="section" style="background-color:#00c1c1;opacity:0.9;">
<div class="wrapsection">
<div class="container">
<div class="row">
<div class="col-md-12 sol-sm-12">
<div class="maintitle">
<h3 class="section-title" style="margin-bottom:20px"><span class="wow bounceInRight">Events</span></h3>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-12">
<div class="faq-block wow bounceInDown" data-wow-duration="1.5s" data-wow-delay="0s">
<div class="panel-group">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a href="intra_16.php">
Intra NSTUMUN 2016</a>
</h4>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-sm-12">
<div class="faq-block wow bounceInDown" data-wow-duration="1.5s" data-wow-delay="0.1s">
<div class="panel-group">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a href="nstumun_17.php">
NSTUMUN 2017 </a>
</h4>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-sm-12">
<div class="faq-block wow bounceInDown" data-wow-duration="1.5s" data-wow-delay="0.2s">
<div class="panel-group">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a href="mun18.php">
NSTUMUN 2018 </a>
</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Academics
================================================== -->
<section id="academics" class="whitecolor parallax section" style="background-image: url(assets/img/academics.jpg);">
<div class="wrapsection">
<div class="container">
<div class="maintitle">
<h3 class="section-title" style="margin-bottom:50px"><strong>Academics</span></strong></h3>
</div>
<div class="row">
<div class="col-md-4">
<div class=" active">
<p class="text-center">
<a href="ac_delegations.php" class="btn btn-default btn-lg wow fadeInLeft" role="button"> Delegations</a>
</p>
</div>
</div>
<div class="col-md-4">
<div class=" active">
<p class="text-center"><a href="ac_awards.php" class="btn btn-default btn-lg wow fadeInLeft" role="button">Awards </a>
</p>
</div>
</div>
<div class="col-md-4">
<div class=" active ">
<p class="text-center">
<a href="ac_eb_members.php" class="btn btn-default btn-lg wow fadeInLeft" role="button">EB Members </a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- News
================================================== -->
<section id="news" class="parallax section" style="background-color:#00c1c1;opacity:0.9;">
<div class="wrapsection">
<div class="parallax-overlay"></div>
<div class="container">
<div class="maintitle">
<h3 class="section-title"><strong>NEWS</span></strong></h3>
<p class="lead">
</p>
</div>
<div class="row">
<div class="col-md-4 col-sm-6">
<div class="service-box wow flipInY" data-wow-duration="1.5s" data-wow-delay="0.1s">
<!-- <span class="glyphicon glyphicon-stats"></span> -->
<a href="http://m.banglatribune.com/my-campus/news/204667/%E0%A6%A8%E0%A7%8B%E0%A6%AC%E0%A6%BF%E0%A6%AA%E0%A7%8D%E0%A6%B0%E0%A6%AC%E0%A6%BF%E0%A6%A4%E0%A7%87-%E0%A6%B6%E0%A7%87%E0%A6%B7-%E0%A6%B9%E0%A6%B2%E0%A7%8B-%E0%A6%9B%E0%A6%BE%E0%A7%9F%E0%A6%BE-%E0%A6%9C%E0%A6%BE%E0%A6%A4%E0%A6%BF%E0%A6%B8%E0%A6%82%E0%A6%98-%E0%A6%B8%E0%A6%AE%E0%A7%8D%E0%A6%AE%E0%A7%87%E0%A6%B2%E0%A6%A8"><img src="assets/img/news_pics/1.jpg" alt=""></a>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="service-box wow flipInY" data-wow-duration="1.5s" data-wow-delay="0.1s">
<!-- <span class="glyphicon glyphicon-stats"></span> -->
<a href="http://samakal.com/todays-print-edition/tp-prio-campus/article/1705294104"><img src="assets/img/news_pics/2.jpg" alt=""></a>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="service-box wow flipInY" data-wow-duration="1.5s" data-wow-delay="0.1s">
<!-- <span class="glyphicon glyphicon-stats"></span> -->
<a href="http://www.daily-sun.com/arcprint/details/209946/Where-hope-grows/2017-03-05"><img src="assets/img/news_pics/3.jpg" alt=""></a>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="service-box wow flipInY" data-wow-duration="1.5s" data-wow-delay="0.1s">
<!-- <span class="glyphicon glyphicon-stats"></span> -->
<a href="http://www.daily-sun.com/arcprint/details/205075/NSTUMUN-2017:-Rays-of-Hope/2017-02-12"><img src="assets/img/news_pics/5.jpg" alt=""></a>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="service-box wow flipInY" data-wow-duration="1.5s" data-wow-delay="0.1s">
<!-- <span class="glyphicon glyphicon-stats"></span> -->
<a href="http://www.theindependentbd.com/printversion/details/82811"><img src="assets/img/news_pics/6.jpg" alt=""></a>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Us
================================================== -->
<section id="contact_us" class="parallax section" style="background-image: url(http://themepush.com/demo/runcharity/assets/img/map.png);">
<div class="wrapsection">
<div class="parallax-overlay" style="background-color: #1cbb9b;opacity:0.95;"></div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="maintitle">
<h3 class="section-title">Get in Touch</h3>
<p class="lead" style="text-align:center">
If you have questions about us, don't hesitate to send us your message.
</p>
</div>
<form id="contact" action="process.php" name="contact" method="post" class="text-left">
<fieldset>
<div class="row">
<div class="col-md-3 wow fadeIn animated animated" data-wow-delay="0.1s" data-wow-duration="2s">
<label for="name">Name<span class="required">*</span></label>
<input type="text" name="name" id="name" size="30" required/>
</div>
<div class="col-md-3 wow fadeIn animated animated" data-wow-delay="0.1s" data-wow-duration="2s">
<label for="institution">Institution<span class="required">*</span></label>
<input type="text" name="institution" id="institution" size="30" value="" required/>
</div>
<div class="col-md-3 wow fadeIn animated" data-wow-delay="0.3s" data-wow-duration="2s">
<label for="email">Email<span class="required">*</span></label>
<input type="text" name="email" id="email" size="30" value="" required/>
</div>
<div class="col-md-3 wow fadeIn animated" data-wow-delay="0.3s" data-wow-duration="2s">
<label for="phone">Phone</label>
<input type="text" name="phone" id="phone" size="30" value=""/>
</div>
</div>
<div class="wow fadeIn animated" data-wow-delay="0.3s" data-wow-duration="1.5" style="margin-top:15px;">
<label for="message">Message<span class="required">*</span></label>
<textarea name="message" id="message" required></textarea>
</div>
<div class="wow fadeIn animated" data-wow-delay="0.3" data-wow-duration="1.5s">
<input id="submit" type="submit" name="submit" value="Send"/>
</div>
</fieldset>
</form>
<div id="success">
<p class="contactalert">
Thank you for your message. We will respond as soon as possible.
</p>
</div>
<div id="error">
<p class="contactalert">
Something went wrong, try refreshing and submitting the form again.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Credits
=============================================== -->
<section id="credits" class="text-center" style="background-color:#00c1c1;opacity:0.9;">
<span class="social wow zoomIn">
<a href="https://www.facebook.com/nstumuna/"><i class="fa fa-facebook"></i></a>
<a href="https://www.instagram.com/nstumuna/"><i class="fa fa-instagram"></i></a>
<a href="https://www.youtube.com/channel/UC_E8pNF5R0XDIWl8XRCOlYQ"><i class="fa fa-youtube-play"></i></a>
</span><br/>
Copyright © <a href="#">NSTUMUNA</a>
</section>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/waypoints.min.js"></script>
<script src="assets/js/jquery.scrollTo.min.js"></script>
<script src="assets/js/jquery.localScroll.min.js"></script>
<script src="assets/js/jquery.magnific-popup.min.js"></script>
<script src="assets/js/validate.js"></script>
<script src="assets/js/common.js"></script>
<script src="assets/js/jquery.samesize.js"></script>
<script src="assets/js/countdown.js"></script>
</body>
</html>