-
Notifications
You must be signed in to change notification settings - Fork 21
/
index.html
executable file
·799 lines (745 loc) · 39.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>ACM, SVNIT</title>
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- ACM Icon -->
<link rel="shortcut icon" type="image/png" href="img/acm.png"/>
<!-- CSS
================================================== -->
<!-- Bootstrap css file-->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Font awesome css file-->
<link href="css/font-awesome.min.css" rel="stylesheet">
<!-- Superslide css file-->
<link rel="stylesheet" href="css/superslides.css">
<!-- Slick slider css file -->
<link href="css/slick.css" rel="stylesheet">
<!-- smooth animate css file -->
<link rel="stylesheet" href="css/animate.css">
<!-- Elastic grid css file -->
<link rel="stylesheet" href="css/elastic_grid.css">
<!-- Circle counter cdn css file -->
<link rel='stylesheet prefetch' href='css/jquery.circliful.css'>
<!-- Default Theme css file -->
<link id="orginal" href="css/themes/default-theme.css" rel="stylesheet">
<!-- Main structure css file -->
<link href="style.css" rel="stylesheet">
<!-- Google fonts -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Varela' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- BEGIN PRELOADER -->
<div id="preloader">
<div id="status"> </div>
</div>
<!-- END PRELOADER -->
<!-- SCROLL TOP BUTTON -->
<a class="scrollToTop" href="#"><i class="fa fa-angle-up"></i></a>
<!-- END SCROLL TOP BUTTON -->
<!--=========== BEGIN HEADER SECTION ================-->
<header id="header">
<!-- BEGIN MENU -->
<div class="menu_area">
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<!-- FOR MOBILE VIEW COLLAPSED BUTTON -->
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- IMG BASED LOGO -->
<a class="navbar-brand" href="#"><img src="img/acm_svnit.png" alt="ACM SVNIT"></a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul id="top-menu" class="nav navbar-nav navbar-right main_nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#service">Services</a></li>
<li><a href="#works">Works</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#blog">Projects</a></li>
<li><a href="#contact">Contacts</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
</div>
<!-- END MENU -->
<!-- BEGIN SLIDER AREA-->
<div class="slider_area">
<!-- BEGIN SLIDER-->
<div id="slides">
<ul class="slides-container">
<!-- THE FIRST SLIDE-->
<li>
<!-- FIRST SLIDE OVERLAY -->
<div class="slider_overlay"></div>
<!-- FIRST SLIDE MAIN IMAGE -->
<img src="img/full-slider/techiq.jpg" alt="img">
</li>
</ul>
<!-- BEGIN SLIDER NAVIGATION -->
<nav class="slides-navigation">
<!-- PREV IN THE SLIDE -->
<a class="prev" href="/item1">
<span class="icon-wrap"></span>
<h3><strong>Prev</strong></h3>
</a>
<!-- NEXT IN THE SLIDE -->
<a class="next" href="/item3">
<span class="icon-wrap"></span>
<h3><strong>Next</strong></h3>
</a>
</nav>
</div>
<!-- END SLIDER-->
</div>
<!-- END SLIDER AREA -->
</header>
<!--=========== End HEADER SECTION ================-->
<!--=========== BEGIN ABOUT SECTION ================-->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12">
<div class="about_area">
<!-- START ABOUT HEADING -->
<div class="heading">
<h2 class="wow fadeInLeftBig">ACM Student Chapter at <a href="http://www.svnit.ac.in" target="_blank">NIT Surat</a></h2>
<p>Founded in 2005, the chapter has been a centre for various learning, fun, and productive activities. Be it coding challenges, hackathons, quizzes, or application development, the chapter has done its best. The activities of the chapter are widely acknowledged in the institute and keenly looked for. Massive turnout at every event shows the range of popularity the chapter has.</br> The bar is being raised year after year. With announcement of Epiphany, CTF! in Quest, and other challenges as open-for-all contests, the chapter is aiming nationwide recognition.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--=========== END ABOUT SECTION ================-->
<!--=========== BEGIN SERVICE SECTION ================-->
<section id="service">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12">
<!-- BEGIN SERVICE HEADING -->
<div class="heading">
<h2 class="wow fadeInLeftBig">Our Services</h2>
<p>Since its establishment in 2005, ACM has proven to be a centre for everyone who looks forward to a year full of fun activities that result in productive learning. The chapter- with the contributions from coding aficionados- has performed exceptionally well in every competition - be it coding, quizzes, challenges or application development.
Every year loads of young computing enthusiasts join us in the competitive events organized by us and help us set the bar higher than the yester-year.
The chapter is rapidly gaining recognition state-wide and we aim amd hope to get recognized nation-wide by making the chapter even more happening , and all the more competitive.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12">
<!-- BEGIN SERVICE -->
<div class="service_area">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<!-- BEGIN SINGLE SERVICE -->
<div class="single_service wow fadeInLeft">
<div class="service_iconarea">
<span class="fa fa-paper-plane service_icon"></span>
</div>
<a href="https://hackinout.co/" target="_blank"><h3 class="service_title">HACKATHON - InOut</h3></a>
<p>Great programmers and even more awesome mentors come together in a mere time-span of 24 hours to build a code from complete scratch and give it the form of an good application. So gear up for a thrilling weekend and creating something that may result into an amazing product. </p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<!-- BEGIN SINGLE SERVICE -->
<div class="single_service wow fadeInRight">
<div class="service_iconarea">
<span class="fa fa-suitcase service_icon"></span>
</div>
<a href="https://www.hackerearth.com/search/search-results/?q=epiphany&utm_source=header&utm_medium=search-all&utm_campaign=he-search" target="_blank"><h3 class="service_title">Epiphany Series</h3></a>
<p>Interpret it as our own ICPC - just on a smaller scale. The only stage in our college to showcase your logical programming skills and simultaneously win a lot of cool stuff. If you are totally new to coding, again this also is your chance to improvise gradually and beat the coding champions at the end of the Epiphany season.</p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<!-- BEGIN SINGLE SERVICE -->
<div class="single_service wow fadeInLeft">
<div class="service_iconarea">
<span class="fa fa-paper-plane service_icon"></span>
</div>
<h3 class="service_title">TECHIQ-2.0 & 1.0</h3>
<p>If you think of yourself as the know-it-all guy, here's your chance to prove it and get rewarded handsomely for it. So, brace yourselves for the mega-quiz on the topics of technologies, companies and persons who changed the course of modern day computing.</p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<!-- BEGIN SINGLE SERVICE -->
<div class="single_service wow fadeInRight">
<div class="service_iconarea">
<span class="fa fa-paper-plane service_icon"></span>
</div>
<h3 class="service_title">Basic Workshops</h3>
<p>There are a lot of new technologies out there - but the basics never change. Also not everyone knows the basics. So here we are to help you learn the basic programming skills in different technologies. All you need to do is show a little enthusiasm and bring a book & a pen/(laptop).</p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<!-- BEGIN SINGLE SERVICE -->
<div class="single_service wow fadeInLeft">
<div class="service_iconarea">
<span class="fa fa-envelope-o service_icon"></span>
</div>
<h3 class="service_title">ACM Geekend</h3>
<p>Capture the Flag, 2x10 Relay, Epiphany 4.2 All conducted during the weekend titled as "Geekend". Over 200 students participated from all years whilst hacking and coding their way through.</p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<!-- BEGIN SINGLE SERVICE -->
<div class="single_service wow fadeInRight">
<div class="service_iconarea">
<span class="fa fa-envelope-o service_icon"></span>
</div>
<a href="https://hourofcode.com/in" target="_blank"><h3 class="service_title">Hour of Code</h3></a>
<p>Code.org decided to organize "Hour of Code" where all do programming for an hour.
ACM NIT Surat decided to join and went to local schools to promote computing and programming by conducting this "Hour of Code".</p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<!-- BEGIN SINGLE SERVICE -->
<div class="single_service wow fadeInLeft">
<div class="service_iconarea">
<span class="fa fa-envelope-o service_icon"></span>
</div>
<h3 class="service_title">ACM Fair</h3>
<p>The biggest extravaganza of even semester.Create applications, gain fame, and win prizes.For more info, visit <a href="http://nitsurat.acm.org/fair/">ACM Fair 2014</a>.</p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<!-- BEGIN SINGLE SERVICE -->
<div class="single_service wow fadeInRight">
<div class="service_iconarea">
<span class="fa fa-envelope-o service_icon"></span>
</div>
<h3 class="service_title">ACM Quest</h3>
<p>The main attraction of the odd semester, this contains a plethora of events from quizzes to hackathons.For more info, visit <a href="http://nitsurat.acm.org/quest/">ACM Quest 2013</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--=========== END SERVICE SECTION ================-->
<!--=========== BEGIN WORKS SECTION ================-->
<section id="works">
<!-- BEGIN MILESTONE WORSK SECTION -->
<div class="row">
<div class="col-lg-12 col-md-12">
<div class="counter_section">
<!-- SKILLS COUNTER OVERLAY -->
<div class="slider_overlay"></div>
<div class="container">
<div class="counter_area">
<div class="heading">
<h3 class="wow fadeInLeft">Some Milestone Works</h3>
</div>
<!-- START SINGLE COUNTER-->
<div class="col-lg-3 col-md-3 col-sm-3">
<div class="counter wow fadeInUp">
<i class="fa fa-users fa-2x"></i>
<h2 class="timer count-title" id="count-number" data-to="940" data-speed="1500">400</h2>
<p class="count-text ">Clients</p>
</div>
</div>
<!-- START SINGLE COUNTER-->
<div class="col-lg-3 col-md-3 col-sm-3">
<div class="counter wow fadeInUp">
<i class="fa fa-tasks fa-2x"></i>
<h2 class="timer count-title" id="count-number2" data-to="1750" data-speed="1500">300</h2>
<p class="count-text ">Projects</p>
</div>
</div>
<!-- START SINGLE COUNTER-->
<div class="col-lg-3 col-md-3 col-sm-3">
<div class="counter wow fadeInUp">
<i class="fa fa-coffee fa-2x"></i>
<h2 class="timer count-title" id="count-number3" data-to="300" data-speed="1500">200</h2>
<p class="count-text ">Cup Of Coffee</p>
</div>
</div>
<!-- START SINGLE COUNTER-->
<div class="col-lg-3 col-md-3 col-sm-3">
<div class="counter wow fadeInUp">
<i class="fa fa-bullhorn fa-2x"></i>
<h2 class="timer count-title" id="count-number4" data-to="875" data-speed="1500">100</h2>
<p class="count-text ">Subscribers</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- END MILESTONE WORSK SECTION -->
<!-- BEGIN FORTFOLIO WORSK SECTION
Commented for future projects.
Use database of all these things.
All css part for this is already given with the template in style.css.
<div class="row">
<div class="portfolio_area">
<div class="row">
<div class="col-lg-12 col-md-12">
<div class="container">
<div class="heading">
<h2 class="wow fadeInLeftBig">Latest Works</h2>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable.If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="portfolio_gallery">
<div id="elastic_grid_demo"></div>
</div>
</div>
</div>
</div>
END FORTFOLIO WORSK SECTION -->
</section>
<!--=========== END WORKS SECTION ================-->
<!--=========== BEGIN TEAM SECTION ================-->
<section id="team">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12">
<!-- BEGIN ABOUT HEADING -->
<div class="heading">
<h2 class="wow fadeInLeftBig">Our Team
<select id="select-year">
<option value="2015-2016">2015-2016</option>
<option value="2014-2015">2014-2015</option>
<option value="2013-2014">2013-2014</option>
<option value="2012-2013">2012-2013</option>
<option value="2011-2012">2011-2012</option>
</select>
</h2>
</div>
<div class="team_area">
<!-- BEGIN TEAM SLIDER -->
<div id="team-slider" class="team_slider">
<!-- BEGIN SINGLE TEAM SLIDE#1 -->
<div class="col-lg-3 col-md-3 col-sm-4">
<div class="single_team wow fadeInUp">
<div class="team_img">
<img src="img/team-1.jpg" alt="img">
</div>
<h5 class="">Team Member 1</h5>
<span>Founder</span>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature</p>
<div class="team_social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<!-- BEGIN SINGLE TEAM SLIDE#2 -->
<div class="col-lg-3 col-md-3 col-sm-4">
<div class="single_team wow fadeInUp">
<div class="team_img">
<img src="img/team-1.jpg" alt="img">
</div>
<h5>Team Member 2</h5>
<span>CMS Developer</span>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature</p>
<div class="team_social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<!-- BEGIN SINGLE TEAM SLIDE#3 -->
<div class="col-lg-3 col-md-3 col-sm-4">
<div class="single_team wow fadeInUp">
<div class="team_img">
<img src="img/team-1.jpg" alt="img">
</div>
<h5>Team Member 3</h5>
<span>Manager</span>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature</p>
<div class="team_social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<!-- BEGIN SINGLE TEAM SLIDE#4 -->
<div class="col-lg-3 col-md-3 col-sm-4">
<div class="single_team wow fadeInUp">
<div class="team_img">
<img src="img/team-1.jpg" alt="img">
</div>
<h5>Team Member 4</h5>
<span>Developer</span>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature</p>
<div class="team_social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<!-- BEGIN SINGLE TEAM SLIDE#5 -->
<div class="col-lg-3 col-md-3 col-sm-4">
<div class="single_team wow fadeInUp">
<div class="team_img">
<img src="img/team-1.jpg" alt="img">
</div>
<h5>Team Member 5</h5>
<span>Programmer</span>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature</p>
<div class="team_social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<!-- BEGIN SINGLE TEAM SLIDE#6 -->
<div class="col-lg-3 col-md-3 col-sm-4">
<div class="single_team wow fadeInUp">
<div class="team_img">
<img src="img/team-1.jpg" alt="img">
</div>
<h5>Team Member 6</h5>
<span>Web Designer</span>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature</p>
<div class="team_social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<!-- BEGIN SINGLE TEAM SLIDE#7 -->
<div class="col-lg-3 col-md-3 col-sm-4">
<div class="single_team wow fadeInUp">
<div class="team_img">
<img src="img/team-1.jpg" alt="img">
</div>
<h5>VTeam Member 7</h5>
<span>Marketing Head</span>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature</p>
<div class="team_social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--=========== END TEAM SECTION ================-->
<!--=========== BEGIN BLOG SECTION ================-->
<section id="blog">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12">
<!-- START BLOG HEADING -->
<div class="heading">
<h2 class="wow fadeInLeftBig">Latest News From Blog</h2>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. </p>
</div>
</div>
<div class="col-lg-12 col-md-12">
<!-- BEGIN BLOG CONTENT -->
<div class="blog_content">
<!-- BEGIN BLOG SLIDER -->
<div class="blog_slider">
<!-- BEGIN SINGLE BLOG -->
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="single_post wow fadeInUp">
<div class="blog_img">
<img src="img/blog_img1.jpg" alt="img">
</div>
<h3>Sed ut perspiciatis unde omnis</h3>
<div class="post_commentbox">
<a href="#"><i class="fa fa-user"></i>Wpfreeware</a>
<span><i class="fa fa-calendar"></i>6:49 AM</span>
<a href="#"><i class="fa fa-tags"></i>Technology</a>
</div>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo</p>
<a href="#" class="read_more">Read More <i class="fa fa-angle-double-right"> </i></a>
</div>
</div>
<!-- BEGIN SINGLE BLOG -->
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="single_post wow fadeInUp">
<div class="blog_img">
<img src="img/blog_img1.jpg" alt="img">
</div>
<h3>Sed ut perspiciatis unde omnis</h3>
<div class="post_commentbox">
<a href="#"><i class="fa fa-user"></i>Wpfreeware</a>
<span><i class="fa fa-calendar"></i>6:49 AM</span>
<a href="#"><i class="fa fa-tags"></i>Technology</a>
</div>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo</p>
<a href="#" class="read_more">Read More <i class="fa fa-angle-double-right"> </i></a>
</div>
</div>
<!-- BEGIN SINGLE BLOG -->
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="single_post wow fadeInUp">
<div class="blog_img">
<img src="img/blog_img1.jpg" alt="img">
</div>
<h3>Sed ut perspiciatis unde omnis</h3>
<div class="post_commentbox">
<a href="#"><i class="fa fa-user"></i>Wpfreeware</a>
<span><i class="fa fa-calendar"></i>6:49 AM</span>
<a href="#"><i class="fa fa-tags"></i>Technology</a>
</div>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo</p>
<a href="#" class="read_more">Read More <i class="fa fa-angle-double-right"> </i></a>
</div>
</div>
<!-- BEGIN SINGLE BLOG -->
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="single_post wow fadeInUp">
<div class="blog_img">
<img src="img/blog_img1.jpg" alt="img">
</div>
<h3>Sed ut perspiciatis unde omnis</h3>
<div class="post_commentbox">
<a href="#"><i class="fa fa-user"></i>Wpfreeware</a>
<span><i class="fa fa-calendar"></i>6:49 AM</span>
<a href="#"><i class="fa fa-tags"></i>Technology</a>
</div>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo</p>
<a href="#" class="read_more">Read More <i class="fa fa-angle-double-right"> </i></a>
</div>
</div>
<!-- BEGIN SINGLE BLOG -->
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="single_post wow fadeInUp">
<div class="blog_img">
<img src="img/blog_img1.jpg" alt="img">
</div>
<h3>Sed ut perspiciatis unde omnis</h3>
<div class="post_commentbox">
<a href="#"><i class="fa fa-user"></i>Wpfreeware</a>
<span><i class="fa fa-calendar"></i>6:49 AM</span>
<a href="#"><i class="fa fa-tags"></i>Technology</a>
</div>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo</p>
<a href="#" class="read_more">Read More <i class="fa fa-angle-double-right"> </i></a>
</div>
</div>
<!-- BEGIN SINGLE BLOG -->
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="single_post wow fadeInUp">
<div class="blog_img">
<img src="img/blog_img1.jpg" alt="img">
</div>
<h3>Sed ut perspiciatis unde omnis</h3>
<div class="post_commentbox">
<a href="#"><i class="fa fa-user"></i>Wpfreeware</a>
<span><i class="fa fa-calendar"></i>6:49 AM</span>
<a href="#"><i class="fa fa-tags"></i>Technology</a>
</div>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo</p>
<a href="#" class="read_more">Read More <i class="fa fa-angle-double-right"> </i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--=========== END BLOG SECTION ================-->
<!--=========== BEGIN CONTACT SECTION ================-->
<section id="contact" class="portfolio_area">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<!-- START CONTACT HEADING -->
<div class="heading">
<h2 class="wow fadeInLeftBig">Contact Us</h2>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. </p>
</div>
</div>
</div>
<div class="row">
<!-- BEGIN CONTACT CONTENT -->
<div class="contact_content">
<!-- BEGIN CONTACT FORM -->
<div class="col-lg-5 col-md-5 col-sm-5">
<div class="contact_form">
<!-- FOR CONTACT FORM MESSAGE -->
<div id="form-messages"></div>
<form>
<input class="form-control" type="text" placeholder="Name">
<input class="form-control" type="email" placeholder="Email">
<input class="form-control" type="text" placeholder="Subject">
<textarea class="form-control" cols="30" rows="10" placeholder="Your Message"></textarea>
<input class="submit_btn" type="submit" value="Send">
</form>
</div>
</div>
<!-- BEGIN CONTACT MAP -->
<div class="col-lg-7 col-md-7 col-sm-7">
<div class="contact_map">
<!-- BEGIN GOOGLE MAP -->
<div id="map_canvas"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--=========== END CONTACT SECTION ================-->
<!--=========== BEGIN CONTACT FEATURE SECTION ================-->
<section id="contactFeature">
<!-- SKILLS COUNTER OVERLAY -->
<div class="slider_overlay"></div>
<div class="row">
<div class="col-lg-12 col-md-12">
<div class="container">
<div class="contact_feature">
<!-- BEGIN CALL US FEATURE -->
<div class="col-lg-3 col-md-3 col-sm-6">
<div class="single_contact_feaured wow fadeInUp">
<i class="fa fa-phone"></i>
<h4>Call Us</h4>
<p>1-265-596-580</p>
</div>
</div>
<!-- BEGIN CALL US FEATURE -->
<div class="col-lg-3 col-md-3 col-sm-6">
<div class="single_contact_feaured wow fadeInUp">
<i class="fa fa-envelope-o"></i>
<h4>Email Address</h4>
<p>[email protected]</p>
</div>
</div>
<!-- BEGIN CALL US FEATURE -->
<div class="col-lg-3 col-md-3 col-sm-6">
<div class="single_contact_feaured wow fadeInUp">
<i class="fa fa-map-marker"></i>
<h4>Office Location</h4>
<p>Your Company Office Location</p>
</div>
</div>
<!-- BEGIN CALL US FEATURE -->
<div class="col-lg-3 col-md-3 col-sm-6">
<div class="single_contact_feaured wow fadeInUp">
<i class="fa fa-clock-o"></i>
<h4>Working Hours</h4>
<p>Monday-Friday 9.00-21.00</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--=========== END CONTACT FEATURE SECTION ================-->
<!--=========== BEGIN SUBSCRIBE SECTION ================-->
<!--
I plan to send mails to whom are subcribed to the ACM Student Chapter.
Come upi with a API and implement this.
<section id="subscribe">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12">
<div class="heading">
<h2 class="wow fadeInLeftBig">Subscribe Us</h2>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. </p>
</div>
<form class="subscribe_form">
<div class="subscrive_group wow fadeInUp">
<input class="form-control subscribe_mail" type="email" placeholder="Enter your email address">
<input class="subscr_btn" type="submit" value="Subscribe">
</div>
</form>
</div>
</div>
</div>
</section>
-->
<!--=========== END SUBSCRIBE SECTION ================-->
<!--=========== BEGIN FOOTER ================-->
<footer id="footer">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="footer_left">
<p>© Copyleft ACM NIT Surat.</p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="footer_right">
<ul class="social_nav">
<li><a href="https://www.facebook.com/acmnitsurat" target="_black"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://www.twitter.com/acmnitsurat/" target="_black"><i class="fa fa-twitter"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</footer>
<!--=========== END FOOTER ================-->
<!-- Javascript Files
================================================== -->
<!-- Views js -->
<script src="js/ajax_init.js"></script>
<script src="js/team.js"></script>
<script src="js/startup.js"></script>
<!-- initialize jQuery Library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- Google map -->
<script src="https://maps.googleapis.com/maps/api/js"></script>
<script src="js/jquery.ui.map.js"></script>
<!-- For smooth animatin -->
<script src="js/wow.min.js"></script>
<!-- Bootstrap js -->
<script src="js/bootstrap.min.js"></script>
<!-- superslides slider -->
<script src="js/jquery.superslides.min.js" type="text/javascript"></script>
<!-- slick slider -->
<script src="js/slick.min.js"></script>
<!-- for circle counter -->
<script src='https://cdn.rawgit.com/pguso/jquery-plugin-circliful/master/js/jquery.circliful.min.js'></script>
<!-- for portfolio filter gallery -->
<script src="js/modernizr.custom.js"></script>
<script src="js/classie.js"></script>
<script src="js/elastic_grid.min.js"></script>
<script src="js/portfolio_slider.js"></script>
<!-- Custom js-->
<script src="js/custom.js"></script>
</body>
</html>