-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
815 lines (740 loc) · 26.7 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!-- lololo -->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-149853301-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-149853301-1');
</script>
<!-- Just some stuff to check -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>The S.C.R.I.P.T Group</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="description" content="Leading Tech-Driven club of MIT-WPU" />
<meta name="keywords"
content="thescriptgroup, the-script-group, the script group, script, tsg, MIT-WPU, mitwpu, engineering, the script group mitwpu" />
<!-- Facebook and Twitter integration -->
<meta property="og:title" content="" />
<meta property="og:image" content="" />
<meta property="og:url" content="" />
<meta property="og:site_name" content="" />
<meta property="og:description" content="" />
<meta name="twitter:title" content="" />
<meta name="twitter:image" content="" />
<meta name="twitter:url" content="" />
<meta name="twitter:card" content="" />
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="shortcut icon" href="favicon.ico">
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,600,400italic,700' rel='stylesheet'
type='text/css'>
<!-- Animate.css -->
<link rel="stylesheet" href="css/animate.css">
<!-- Icomoon Icon Fonts-->
<link rel="stylesheet" href="css/icomoon.css">
<!-- Simple Line Icons -->
<link rel="stylesheet" href="css/simple-line-icons.css">
<!-- Magnific Popup -->
<link rel="stylesheet" href="css/magnific-popup.css">
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- W3.CSS -->
<link rel="stylesheet" href="css/w3.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.css">
<link rel="icon" href="images/favicon.png" type="Image" sizes="16x16">
<!--
Default Theme Style
You can change the style.css (default color purple) to one of these styles
1. pink.css
2. blue.css
3. turquoise.css
4. orange.css
5. lightblue.css
6. brown.css
7. green.css
-->
<link rel="stylesheet" href="css/style.css">
<style>
/* For demo purpose only */
/* For Demo Purposes Only ( You can delete this anytime :-) */
#colour-variations {
padding: 10px;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
width: 140px;
position: fixed;
left: 0;
top: 100px;
z-index: 999999;
background: #fff;
/*border-radius: 4px;*/
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
-webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, .1);
-moz-box-shadow: 0 0 9px 0 rgba(0, 0, 0, .1);
-ms-box-shadow: 0 0 9px 0 rgba(0, 0, 0, .1);
box-shadow: 0 0 9px 0 rgba(0, 0, 0, .1);
}
#colour-variations.sleep {
margin-left: -140px;
}
#colour-variations h3 {
text-align: center;
;
font-size: 11px;
letter-spacing: 2px;
text-transform: uppercase;
color: #777;
margin: 0 0 10px 0;
padding: 0;
;
}
#colour-variations ul,
#colour-variations ul li {
padding: 0;
margin: 0;
}
#colour-variations li {
list-style: none;
display: block;
margin-bottom: 5px !important;
float: left;
width: 100%;
}
#colour-variations li a {
width: 100%;
position: relative;
display: block;
overflow: hidden;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
border-radius: 4px;
-webkit-transition: 0.4s;
-o-transition: 0.4s;
transition: 0.4s;
}
#colour-variations li a:hover {
opacity: .9;
}
#colour-variations li a>span {
width: 33.33%;
height: 20px;
float: left;
display: -moz-inline-stack;
display: inline-block;
zoom: 1;
*display: inline;
}
.option-toggle {
position: absolute;
right: 0;
top: 0;
margin-top: 5px;
margin-right: -30px;
width: 30px;
height: 30px;
background: #f64662;
text-align: center;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
color: #fff;
cursor: pointer;
-webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, .1);
-moz-box-shadow: 0 0 9px 0 rgba(0, 0, 0, .1);
-ms-box-shadow: 0 0 9px 0 rgba(0, 0, 0, .1);
box-shadow: 0 0 9px 0 rgba(0, 0, 0, .1);
}
.option-toggle i {
top: 2px;
position: relative;
}
.option-toggle:hover,
.option-toggle:focus,
.option-toggle:active {
color: #fff;
text-decoration: none;
outline: none;
}
</style>
<!-- End demo purposes only -->
<!-- Modernizr JS -->
<script src="js/modernizr-2.6.2.min.js"></script>
<!-- FOR IE9 below -->
<!--[if lt IE 9]>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<header role="banner" id="fh5co-header">
<div class="container">
<!-- <div class="row"> -->
<nav class="navbar navbar-default">
<div class="navbar-header">
<!-- Mobile Toggle Menu Button -->
<a href="#" class="js-fh5co-nav-toggle fh5co-nav-toggle" data-toggle="collapse"
data-target="#navbar" aria-expanded="false" aria-controls="navbar"><i></i></a>
<a class="navbar-brand" href="index.html"><span class="brackets">{  </span><span
id="head">S<span style="font-size: 12px;"> . </span>C<span style="font-size: 12px;"> .
</span>R<span style="font-size: 12px;"> . </span>I<span style="font-size: 12px;"> .
</span>P<span style="font-size: 12px;"> . </span>T</span><span
class="brackets"> }</span></a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="#" data-nav-section="home"><span>Home</span></a></li>
<li><a href="#" data-nav-section="events"><span>Events</span></a></li>
<li><a href="#" data-nav-section="testimonials"><span>What Students Say</span></a></li>
<li><a href="#" data-nav-section="services"><span>Services</span></a></li>
<li><a href="#" data-nav-section="about"><span>About</span></a></li>
<li><a href="#" data-nav-section="contact"><span>Contact</span></a></li>
</ul>
</div>
</nav>
<!-- </div> -->
</div>
</header>
<section id="fh5co-home" style="background-image: url(images/snake.gif);" data-section="home">
<div class="gradient"></div>
<div class="container">
<div class="text-wrap">
<div class="text-inner">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1 class="to-animate change-size">Leading Tech-Driven Club of MIT-WPU</h1>
<a href="" target="_blank"><button class="btn btn-8 btn-8a to-animate"
id="bottombutton">We will be back soon!<br> Stay Safe!!</button></a>
</div>
</div>
</div>
</div>
</div>
<div class="slant"></div>
</section>
<!-- <div id="id01" class="w3-modal">
<br>
<br>
<div class="w3-modal-content w3-card-4">
<header class="w3-container w3-center" style="background: #FF0000;">
<span onclick="document.getElementById('id01').style.display='none'"
class="w3-button w3-display-topright">×</span>
<h3 class="w3-margin w3-text-white">So, whatchu gonna do?</h3>
</header>
<div class="w3-container w3-padding">
<div class="row">
<div class="column">
<div class="w3-display-container" style="height:150px; font-size:18px;">
<a href="https://forms.gle/Ea1sSAVy3mpcdSzW7" target="_blank" onclick="alert('You will need to fill 2 forms, details mentioned at the start of the first form! Press okay to continue to the first form');">
<div class="card">
<i class="fas fa-laptop-code fa-3x w3-text-black"></i>
<div class="w3-display-bottommiddle">
<p class="w3-text-black w3-text-bold"><strong>Tech Team Form</strong></p>
</div>
</div>
</a>
</div>
</div>
<div class="column">
<div class="w3-display-container" style="height:150px; font-size:18px;">
<a href="Syllabus.pdf" target="_blank">
<div class="card">
<i class="fas fa-info-circle fa-3x w3-text-black"></i>
<div class="w3-display-bottommiddle">
<p class="w3-text-black"><strong>Tech Portion (For RSC)</strong></p>
</div>
</div>
</a>
</div>
</div>
<div class="column">
<div class="w3-display-container" style="height:150px; font-size:18px;">
<a href="Recruitment Brochure.pdf" target="_blank">
<div class="card">
<i class="fas fa-book-open fa-3x w3-text-black"></i>
<div class="w3-display-bottommiddle">
<p class="w3-text-black"><strong>View Brochure</strong></p>
</div>
</div>
</a>
</div>
</div>
<div class="column">
<div class="w3-display-container" style="height:150px; font-size:18px;">
<a href="https://forms.gle/78jLrrseZTUokxma7" target="_blank">
<div class="card">
<i class="fas fa-users fa-3x w3-text-black"></i>
<div class="w3-display-bottommiddle">
<p class="w3-text-black"><strong>Non-Tech Team Form</strong></p>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
<footer class="w3-container w3-center" style="background: #FF0000;">
<h3 class="w3-margin w3-text-white">We look forward to meeting you!</h3>
</footer>
</div>
</div> -->
<div id="fh5co-intro">
<div class="container">
<div class="row row-bottom-padded-lg">
<div class="fh5co-block to-animate" id="hide2">
<div class="overlay-darker"></div>
<div class="overlay"></div>
<div class="fh5co-text">
<i class="fa fa-code fa-5x w3-margin-bottom"></i>
<h2>We will be back soon</h2>
<p>Stay Safe</p>
<p><a class="btn btn-primary soon" disabled>Currently unavailable</a></p>
</div>
</div>
<div class="fh5co-block to-animate" style="background-image: url(images/feature_graphic.png);" id="hide2">
<div class="overlay-darker"></div>
<div class="overlay"></div>
<div class="fh5co-text">
<i class="fa fa-mobile fa-5x w3-margin-bottom"></i>
<h2>Attendance App</h2>
<p>Check your ERP attendance on the go!<br/>For WPU students only.</p>
<p><a class="btn btn-primary" href="https://play.google.com/store/apps/details?id=in.thescriptgroup.attendance">Download for Android</a></p>
</div>
</div>
<div class="fh5co-block to-animate" style="background-image: url(images/poster.png);" id="hide2">
<div class="overlay-darker"></div>
<div class="overlay"></div>
<div class="fh5co-text">
<i class="fa fa-question-circle fa-5x w3-margin-bottom"></i>
<h2>Upcoming Event</h2>
<p>Patience is a virtue. We will be declaring the next workshop soon :D</p>
<p><a class="btn btn-primary soon" disabled>Register!</a></p>
</div>
</div>
</div>
<div class="row watch-video text-center to-animate">
<span>Watch the video</span>
<a href="https://www.youtube.com/watch?v=eEMjVVnvEBY&feature=youtu.be"
class=" w3-text-black w3-red btn-video" target="_blank"><i class="icon-play2"></i></a>
</div>
</div>
</div>
<section id="fh5co-work" data-section="events">
<div class="container">
<div class="row">
<div class="col-md-12 section-heading text-center">
<h2 class="to-animate">Events</h2>
<div class="row">
<div class="col-md-8 col-md-offset-2 subtext to-animate">
<h3>Bringing technology to students, one event at a time.</h3>
</div>
</div>
</div>
</div>
<div class="row row-bottom-padded-sm">
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/techo11.JPG" class="fh5co-project-item image-popup to-animate">
<img src="images/techo11.JPG" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>TECHO - I</h2>
<span>Git and GitHub</span>
</div>
</a>
</div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/techo33.JPG" class="fh5co-project-item image-popup to-animate">
<img src="images/techo33.JPG" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>TECHO - III</h2>
<span>Problem Solving Through Game Development</span>
</div>
</a>
</div>
<div class="clearfix visible-sm-block"></div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/techo41.png" class="fh5co-project-item image-popup to-animate">
<img src="images/techo41.png" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>TECHO - IV</h2>
<span>Ethical Hacking</span>
</div>
</a>
</div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/codex11.JPG" class="fh5co-project-item image-popup to-animate">
<img src="images/codex11.JPG" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>CodeX December 2018</h2>
<span>Christmas Theme</span>
</div>
</a>
</div>
<div class="clearfix visible-sm-block"></div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/codex12.JPG" class="fh5co-project-item image-popup to-animate">
<img src="images/codex12.JPG" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>CodeX April 2019</h2>
<span>Marvel Theme</span>
</div>
</a>
</div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/codex31.png" class="fh5co-project-item image-popup to-animate">
<img src="images/codex31.png" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>CodeX December 2019</h2>
<span>Harry Potter Theme</span>
</div>
</a>
</div>
<!-- <div class="clearfix visible-sm-block"></div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/work_7.jpg" class="fh5co-project-item image-popup to-animate">
<img src="images/work_7.jpg" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>Project 3</h2>
<span>Web</span>
</div>
</a>
</div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/work_8.jpg" class="fh5co-project-item image-popup to-animate">
<img src="images/work_8.jpg" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>Project 4</h2>
<span>Sketch</span>
</div>
</a>
</div>
<div class="clearfix visible-sm-block"></div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/work_1.jpg" class="fh5co-project-item image-popup to-animate">
<img src="images/work_1.jpg" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>Project 2</h2>
<span>Illustration</span>
</div>
</a>
</div> -->
</div>
</div>
</section>
<section id="fh5co-testimonials" data-section="testimonials">
<div class="container">
<div class="row">
<div class="col-md-12 section-heading text-center">
<h2 class="to-animate">What Students Say</h2>
<!--<div class="row">
<div class="col-md-8 col-md-offset-2 subtext to-animate">
<h3>Our highly rated events, are</h3>
</div>
</div>-->
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="box-testimony">
<blockquote class="to-animate-2">
<p>“Doubts were solved instantly. Session was really good.”</p>
</blockquote>
</div>
</div>
<div class="col-md-4">
<div class="box-testimony">
<blockquote class="to-animate-2">
<p>“ Need more events like these in future.”</p>
</blockquote>
</div>
</div>
<div class="col-md-4">
<div class="box-testimony">
<blockquote class="to-animate-2">
<p>“ Helpful team members! ”</p>
</blockquote>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="box-testimony">
<blockquote class="to-animate-2">
<p>“Helped in logic building. Will hope for another workshop soon”</p>
</blockquote>
</div>
</div>
<div class="col-md-4">
<div class="box-testimony">
<blockquote class="to-animate-2">
<p>“ Take more such workshops and take it for more time.”</p>
</blockquote>
</div>
</div>
<div class="col-md-4">
<div class="box-testimony">
<blockquote class="to-animate-2">
<p>“Great job by all of you. ”</p>
</blockquote>
</div>
</div>
</div>
</div>
</section>
<section id="fh5co-services" data-section="services">
<div class="container">
<div class="row">
<div class="col-md-12 section-heading text-left">
<h2 class=" left-border to-animate">Services</h2>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 fas fa-laptop-code" aria-hidden="true"></i>
<h3>Tech Lectures</h3>
<p>We introduce new technologies and relevant software, to increase exposure and working knowledge.
We conduct sessions in an innovative way, so as to make them fun!</p>
</div>
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 fab fa-ubuntu"></i>
<h3>Installation Services</h3>
<p>Having trouble installing Ubuntu on your PC? Windows has crashed out of nowhere? We provide you
all the Tech Support you need! Click <a href="installation.html" target="_blank"
class="w3-text-red">here</a> for more details.<br>(Charges may apply)</p>
</div>
<div class="clearfix visible-sm-block"></div>
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 fas fa-trophy"></i>
<h3>Coding Events</h3>
<p>Think you have a great grip on any or multiple Programming Languages? Compete with others in our
Competitive Coding Competitions, and win exciting prizes!</p>
</div>
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 fab fa-google" aria-hidden="true"></i>
<h3>"Okay Google, Talk to The Script Group"</h3>
<p>Talk to our virtual version on Google Assistant!<br /> Use the Google app, and just say the
above. Our bot will be at your service!</p>
</div>
</div>
</div>
</section>
<section id="fh5co-about" data-section="about">
<div class="container">
<div class="row">
<div class="col-md-12 section-heading text-center">
<h2 class="to-animate">About</h2>
<div class="row">
<div class="col-md-8 col-md-offset-2 subtext to-animate">
<h3>We are the first <b>tech-based</b> club of MIT-WPU, inspired to promote<br /> a culture
of coding and technical knowledge.</h3>
<br><br>
<a href="about.html" target="_blank"><button class="btn btn-8 btn-8a to-animate"
id="bottombutton">Meet our Members!</button></a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="fh5co-counters" style="background-image: url(images/workshop.jpg);"
data-stellar-background-ratio="0.5">
<div class="fh5co-overlay"></div>
<div class="container">
<div class="row">
<div class="col-md-12 section-heading text-center to-animate">
<h2>Our Stats</h2>
</div>
</div>
<div class="row">
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="fh5co-counter to-animate">
<i class="fh5co-counter-icon far fa-calendar-check to-animate-2 w3-text-red"></i>
<span class="fh5co-counter-number js-counter" data-from="0" data-to="16" data-speed="3000"
data-refresh-interval="50">30</span>
<span class="fh5co-counter-label">Events Organized</span>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="fh5co-counter to-animate">
<i class="fh5co-counter-icon fas fa-user-plus to-animate-2 w3-text-red"></i>
<span class="fh5co-counter-number js-counter" data-from="0" data-to="2093" data-speed="3000"
data-refresh-interval="50">750</span>
<span class="fh5co-counter-label">Registrations</span>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="fh5co-counter to-animate">
<i class="fh5co-counter-icon fas fa-code-branch to-animate-2 w3-text-red"></i>
<span class="fh5co-counter-number js-counter" data-from="0" data-to="1713" data-speed="3000"
data-refresh-interval="50">600</span>
<span class="fh5co-counter-label">GitHub Commits</span>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="fh5co-counter to-animate">
<i class="fh5co-counter-icon icon-people to-animate-2 w3-text-red"></i>
<span class="fh5co-counter-number js-counter" data-from="0" data-to="35" data-speed="3000"
data-refresh-interval="50">30</span>
<span class="fh5co-counter-label">Group Members</span>
</div>
</div>
</div>
</div>
</section>
<section id="fh5co-contact" data-section="contact">
<div class="container">
<div class="row">
<div class="col-md-12 section-heading text-center">
<h2 class="to-animate">Get In Touch</h2>
<div class="row">
<div class="col-md-8 col-md-offset-2 subtext to-animate">
<h3>Do you still have any doubts? Want to know more? Feel free to contact us anytime! </h3>
</div>
</div>
</div>
</div>
<div class="row row-bottom-padded-md">
<div class="col-md-6 to-animate">
<h3>Contact Info</h3>
<ul class="fh5co-contact-info">
<li class="fh5co-contact-address ">
<i class="icon-home"></i>
<a
href="https://www.google.com/maps/place/MIT+World+Peace+University/@18.5177542,73.8148826,15z/data=!4m5!3m4!1s0x0:0x2be5e8da02be693e!8m2!3d18.5177542!4d73.8148826">
MIT - World Peace University, Pune</a>
</li>
<li><i class="icon-phone"></i><a href="tel:+918200132410">+91 82001 32410</a></li>
<li><i class="icon-envelope"></i><a
href="mailto:support@thescriptgroup.in?Subject=Query%20[site]"
target="_top">support@thescriptgroup.in</a></li>
<li><i class="icon-external-link"></i><a href="privacypolicy.html" target="_top">Privacy
Policy</a></li>
<li><i class="icon-rss"></i><a
href="https://feedburner.google.com/fb/a/mailverify?uri=thescriptgroup/TFtJ&loc=en_US"
target="_top">Subscribe to TSG Blog via email</a></li>
</ul>
</div>
<div class="col-md-6 to-animate">
<h3>Contact Form</h3>
<form method="POST" action="https://formspree.io/script.mailus@gmail.com">
<div class="form-group ">
<label for="name" class="sr-only">Name</label>
<input id="name" class="form-control" placeholder="Name" type="text" name="Name" required>
</div>
<div class="form-group ">
<label for="email" class="sr-only">Email</label>
<input id="email" class="form-control" placeholder="Email" type="email" name="Email"
required>
</div>
<div class="form-group ">
<label for="phone" class="sr-only">Phone</label>
<input id="phone" class="form-control" placeholder="Phone" type="text" name="Phone"
required>
</div>
<div class="form-group ">
<label for="message" class="sr-only">Message</label>
<textarea id="message" cols="30" rows="5" class="form-control" placeholder="Message"
name="Message" required></textarea>
</div>
<div class="form-group ">
<input class="btn btn-primary btn-lg" value="Send Message" type="submit">
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<footer id="footer" role="contentinfo">
<a href="#" class="gotop js-gotop w3-text-black">To<i class="icon-arrow-up2">Top</i></a>
<div class="container">
<br>
<div class="row">
<div class="col-md-12 text-center">
<ul class="social social-circle">
<li><a href="https://www.facebook.com/thescriptgroup/" target="_blank"><i
class="icon-facebook"></i></a></li>
<li><a href="https://www.instagram.com/script.ig/" target="_blank"><i
class="fab fa-instagram"></i></a></li>
<li><a href="https://github.com/The-SCRIPT-Group/" target="_blank"><i
class="icon-github"></i></a></li>
<li><a href="https://t.me/thescriptgroup" target="_blank"><i class="fab fa-telegram"></i></a>
</li>
<li><a href="https://chat.whatsapp.com/FQ4wub3xXwcFr7ueVX0gga" target="_blank"><i
class="fab fa-whatsapp"></i></a></li>
<li><a href="https://www.youtube.com/channel/UCjoxLu4mu4q9a7j3sy-unmQ" target="_blank"><i
class="icon-youtube"></i></a></li>
</ul>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="js/jquery.min.js"></script>
<!-- jQuery Easing -->
<script src="js/jquery.easing.1.3.js"></script>
<!-- Bootstrap -->
<script src="js/bootstrap.min.js"></script>
<!-- Waypoints -->
<script src="js/jquery.waypoints.min.js"></script>
<!-- Stellar Parallax -->
<script src="js/jquery.stellar.min.js"></script>
<!-- Counter -->
<script src="js/jquery.countTo.js"></script>
<!-- Magnific Popup -->
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/magnific-popup-options.js"></script>
<!-- Google Map -->
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCefOgb1ZWqYtj7raVSmN4PL2WkTrc-KyA&sensor=false"></script>
<script src="js/google_map.js"></script>
<!-- For demo purposes only styleswitcher ( You may delete this anytime ) -->
<script src="js/jquery.style.switcher.js"></script>
<script>
var winWidth = 0;
$(window).resize(function () {
winWidth = $(window).width();
if (winWidth <= 768) {
$(".change-size").css("font-size", "36px");
$(".hide-card").css("display", "none");
document.getElementById("show").style.order = "1";
document.getElementById("hide1").style.order = "2";
document.getElementById("hide2").style.order = "3";
}
else {
$(".change-size").css("font-size", "64px");
$(".hide-card").css("display", "block");
}
});
$(".soon").css("background-color", "gray");
$(".soon").hover(function () {
$(this).css("background-color", "gray");
});
$(function () {
$('#colour-variations ul').styleSwitcher({
defaultThemeId: 'theme-switch',
hasPreview: false,
cookie: {
expires: 30,
isManagingLoad: true
}
});
$('.option-toggle').click(function () {
$('#colour-variations').toggleClass('sleep');
});
});
</script>
<!-- End demo purposes only -->
<!-- Main JS (Do not remove) -->
<script src="js/main.js"></script>
</body>
</html>