-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1030 lines (934 loc) · 72.2 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>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>TechZephyr'22</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v6.1.0/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700" rel="stylesheet" type="text/css" />
<!-- Core theme CSS (includes Bootstrap)-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css">
<link href="css/styles.css" rel="stylesheet" />
<link rel="stylesheet" href="css/societies.css">
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand" href="#page-top"><img src="assets/img/Navlogo.png" alt="..." /></a>
<!-- <button class="navbar-toggler" type="button" data -bs-toggle="collapse" data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fas fa-bars ms-1"></i>
</button> -->
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav text-uppercase ms-auto py-4 py-lg-0">
<li class="nav-item"><a class="nav-link" href="#page-top">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#services">Introduction</a></li>
<li class="nav-item"><a class="nav-link" href="#portfolio">Events</a></li>
<li class="nav-item"><a class="nav-link" href="#societies">Societies</a></li>
<li class="nav-item"><a class="nav-link" href="#team">Contact</a></li>
<!-- <li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li> -->
</ul>
</div>
</div>
</nav>
<div id="carouselExampleIndicators" class="carousel slide" data-bs-ride="carousel" data-interval="1000">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1" aria-label="Slide 2"></button>
<!-- <button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2" aria-label="Slide 3"></button> -->
</div>
<div class="carousel-inner" style="background-image: url(assets/img/carouselimgbg.jpg);">
<div class="carousel-item active" >
<img src="assets/img/1.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption text-center">
<h1>
TechZephyr '22
</h1>
<h3>
A Week of Technical Saga
</h3>
<a class="btn btn-outline-light btn-lg" href="assets/TechZephyr RuleBook 2k22.pdf">RuleBook</a>
</div>
</div>
<div class="carousel-item">
<img src="assets/img/2.webp" class="d-block w-100" alt="...">
<div class="carousel-caption text-center">
<h1>
Timeline
</h1>
<h3>
7th - 13th November 2022
</h3>
<a class="btn btn-outline-light btn-lg" href="assets/TechZephyr RuleBook 2k22.pdf">View RuleBook</a>
</div>
</div>
<!-- <div class="carousel-item">
<img src="assets/img/carouselimg3.jpg" class="d-block w-100" alt="...">
</div> -->
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!-- Masthead-->
<!-- <div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li> -->
<!-- <li data-target="#carouselExampleIndicators" data-slide-to="2"></li> -->
<!-- </ol> -->
<!-- <header class="masthead"> -->
<!--Slider-->
<!-- sliderend -->
<!-- <div class="container">
<div class="masthead-subheading">Astro Champ '22</div>
<div class="masthead-heading text-uppercase">Where Astronomy attains Singularity!</div>
<a class="btn btn-primary btn-xl text-uppercase" href="#services">Tell Me More</a>
</div> -->
<!-- </header> -->
<!-- Services-->
<section class="page-section" id="services">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">Details</h2>
<h3 class="section-subheading text-muted">____________________</h3>
</div>
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-trophy fa-stack-1x fa-inverse"></i>
</span>
<h4 class="my-3">Prize Pool</h4>
<p class="text-muted">Win prizes from a prize pool of Rs. 60K+</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-laptop fa-stack-1x fa-inverse"></i>
</span>
<h4 class="my-3">Offline and Online Events</h4>
<p class="text-muted">A plethora of diverse events</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-calendar fa-stack-1x fa-inverse"></i>
</span>
<h4 class="my-3">Date</h4>
<p class="text-muted">Participate in events & workshops between 7-13 November</p>
</div>
</div>
</div>
</section>
<!-- Portfolio Grid-->
<section class="page-section bg-light" id="portfolio">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">EVENTS</h2>
<h3 class="section-subheading text-muted">Following are the events conducted in TechZephyr by respective societies of IIT Bhubaneswar. Do participate! :)
</h3>
</div>
<div class="row">
<div class="col-lg-4 col-sm-6 mb-4">
<!-- Portfolio item 1-->
<div class="portfolio-item">
<a class="portfolio-link" data-bs-toggle="modal" href="#portfolioModal1">
<div class="portfolio-hover">
<div class="portfolio-hover-content"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/1.jpg" alt="..." />
</a>
<div class="portfolio-caption">
<div class="portfolio-caption-heading">Hack the Box</div>
<div class="portfolio-caption-subheading text-muted">Cyber Security</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mb-4">
<!-- Portfolio item 2-->
<div class="portfolio-item">
<a class="portfolio-link" data-bs-toggle="modal" href="#portfolioModal2">
<div class="portfolio-hover">
<div class="portfolio-hover-content"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/2.jpg" alt="..." />
</a>
<div class="portfolio-caption">
<div class="portfolio-caption-heading">CodeVerse</div>
<div class="portfolio-caption-subheading text-muted">Programming</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mb-4">
<!-- Portfolio item 3-->
<div class="portfolio-item">
<a class="portfolio-link" data-bs-toggle="modal" href="#portfolioModal3">
<div class="portfolio-hover">
<div class="portfolio-hover-content"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/3.jpg" alt="..." />
</a>
<div class="portfolio-caption">
<div class="portfolio-caption-heading">UXtivity</div>
<div class="portfolio-caption-subheading text-muted">Designing</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mb-4 mb-lg-0">
<!-- Portfolio item 4-->
<div class="portfolio-item">
<a class="portfolio-link" data-bs-toggle="modal" href="#portfolioModal4">
<div class="portfolio-hover">
<div class="portfolio-hover-content"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/4.jpg" alt="..." />
</a>
<div class="portfolio-caption">
<div class="portfolio-caption-heading">Investo</div>
<div class="portfolio-caption-subheading text-muted">Mock Trading</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mb-4 mb-sm-0">
<!-- Portfolio item 5-->
<div class="portfolio-item">
<a class="portfolio-link" data-bs-toggle="modal" href="#portfolioModal5">
<div class="portfolio-hover">
<div class="portfolio-hover-content"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/5.jpg" alt="..." />
</a>
<div class="portfolio-caption">
<div class="portfolio-caption-heading">BIOT</div>
<div class="portfolio-caption-subheading text-muted">Robotics</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<!-- Portfolio item 6-->
<div class="portfolio-item">
<a class="portfolio-link" data-bs-toggle="modal" href="#portfolioModal6">
<div class="portfolio-hover">
<div class="portfolio-hover-content"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/6.jpg" alt="..." />
</a>
<div class="portfolio-caption">
<div class="portfolio-caption-heading">RUFURYUS</div>
<div class="portfolio-caption-subheading text-muted">Robotics</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mb-4 mb-lg-0">
<!-- Portfolio item 7-->
<div class="portfolio-item">
<a class="portfolio-link" data-bs-toggle="modal" href="#portfolioModal7">
<div class="portfolio-hover">
<div class="portfolio-hover-content"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/7.jpg" alt="..." />
</a>
<div class="portfolio-caption">
<div class="portfolio-caption-heading">ASTRAZENECA</div>
<div class="portfolio-caption-subheading text-muted">Astronomy</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mb-4 mb-sm-0">
<!-- Portfolio item 8-->
<div class="portfolio-item">
<a class="portfolio-link" data-bs-toggle="modal" href="#portfolioModal8">
<div class="portfolio-hover">
<div class="portfolio-hover-content"><i class="fas fa-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/portfolio/8.jpg" alt="..." />
</a>
<div class="portfolio-caption">
<div class="portfolio-caption-heading">SHOOTING STARS</div>
<div class="portfolio-caption-subheading text-muted">Astrophotography</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About-->
<!--------------This is start of societies section------------>
<div class="societies" id="societies">
<h1>SOCIETIES</h1>
<div class="rule"></div>
<h2>Many societies of IIT Bhubaneswar have conducted TechZephyr. Do check their pages! :)</h2>
<div class="Container">
<div class="Card">
<div class="img-box">
<img src="assets/img/societies images/society1.png">
</div>
<div class="content">
<p class="title">Nakshatra</p>
<p class="tag-line">Astronomy Society of IIT Bhubaneswar</p>
<span ><a href="https://www.facebook.com/nakshatraiitbbs" target="_blank"><ion-icon class="icons" name="logo-facebook" ></ion-icon></a><a href="https://www.instagram.com/nakshatra_iitbbs/" target="_blank"><ion-icon class="icons" name="logo-instagram"></ion-icon></a><a href="https://www.youtube.com/channel/UC84FoUwp0Tfh8qf4WITiXvA" target="_blank" ><ion-icon class="icons" name="logo-youtube"></ion-icon></a></span>
</div>
</div>
<div class="Card">
<div class="img-box">
<img src="assets/img/societies images/society2.png">
</div>
<div class="content">
<p class="title">WebnD</p>
<p class="tag-line">Web and Design Society of IIT Bhubaneswar</p>
<span ><a href="https://www.linkedin.com/company/webd-iitbbs/" target="_blank"><ion-icon class="icons" name="logo-linkedin"></ion-icon></a><a href="https://www.instagram.com/webnd.iitbbs/" target="_blank"><ion-icon class="icons" name="logo-instagram"></ion-icon></a></span>
</div>
</div>
<div class="Card">
<div class="img-box">
<img src="assets/img/societies images/society3.png">
</div>
<div class="content">
<p class="title">Neuromancers</p>
<p class="tag-line">Programming Society of IIT Bhubaneswar</p>
<span ><a href="https://www.facebook.com/neuroIITBBS" target="_blank"></span><ion-icon class="icons" name="logo-facebook"></ion-icon></a><a href="https://www.instagram.com/neuro_iitbbs/" target="_blank"><ion-icon class="icons" name="logo-instagram"></ion-icon></a></span>
</div>
</div>
<div class="Card">
<div class="img-box">
<img src="assets/img/societies images/febs.jpg">
</div>
<div class="content">
<p class="title">FEBS</p>
<p class="tag-line">Finance, Economics and Business Society of IIT Bhubaneswar</p>
<span ><a href="https://www.facebook.com/febs.iitbbs" target="_blank"><ion-icon class="icons" name="logo-facebook"></ion-icon></a><a href="https://www.instagram.com/febs.iitbbs/" target="_blank"><ion-icon class="icons"name="logo-instagram"></ion-icon></a></span>
</div>
</div>
<!-- <div class="Card">
<div class="img-box">
<img src="assets/img/societies images/society5.png">
</div>
<div class="content">
<p class="title">Abhivyakti</p>
<p class="tag-line">Hindi Literary Society of IIT Bhubaneswar</p>
<span ><a href="https://www.facebook.com/abhivyakti.iitbbs" target="_blank"><ion-icon class="icons" name="logo-facebook"></ion-icon></a><a href="https://www.instagram.com/abhivyaktiiitbbs/" target="_blank"><ion-icon class="icons" name="logo-instagram"></ion-icon></a></span>
</div>
</div>
<div class="Card">
<div class="img-box">
<img src="assets/img/societies images/society6.png">
</div>
<div class="content">
<p class="title">QC </p>
<p class="tag-line">Quiz Club of IIT Bhubaneswar</p>
<span ><a href="https://www.instagram.com/quizclub.iitbbs/" target="_blank"><ion-icon class="icons" name="logo-instagram"></ion-icon></a><a href="https://twitter.com/quizclubiitbbs" target="_blank"><ion-icon class="icons" name="logo-twitter"></ion-icon></a></span>
</div>
</div>
<div class="Card">
<div class="img-box">
<img src="assets/img/societies images/society7.png">
</div>
<div class="content">
<p class="title">Clix </p>
<p class="tag-line">Photography Society of IIT Bhubaneswar</p>
<span ><a href="https://www.facebook.com/clixiitbbs" target="_blank"><ion-icon class="icons" name="logo-facebook"></ion-icon></a><a href="https://www.instagram.com/clixiitbbs/" target="_blank"><ion-icon class="icons" name="logo-instagram"></ion-icon></a></span>
</div>
</div> -->
<div class="Card">
<div class="img-box">
<img src="assets/img/societies images/society8.png">
</div>
<div class="content">
<p class="title">RISC </p>
<p class="tag-line">Robotics Society of IIT Bhubaneswar</p>
<span ><a href="https://www.facebook.com/IIT-Bhubaneswar-Robotics-Club-RISC-115352149093439/" target="_blank"><ion-icon class="icons" name="logo-facebook"></ion-icon></a><a href="https://www.instagram.com/risc.iitbbs/" target="_blank"><ion-icon class="icons" name="logo-instagram"></ion-icon></a></span>
</div>
</div>
</div>
</div>
<!--------------This is end of societies section-------->
<!-- Team-->
<section class="page-section bg-light" id="team">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">Contact</h2>
<h3 class="section-subheading text-muted">Reach out the people below in case of any queries</h3>
</div>
<div class="row">
<div class="col-lg-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="assets/img/team/1.jpg" alt="..." />
<h4>Akshat Rampuria</h4>
<p class="text-muted">General Secretary Science & Technology</p>
<a class="btn btn-dark btn-social mx-2" href="mailto:gsecsnt.sg@iitbbs.ac.in" aria-label="Akshat Email"><i class="fa fa-envelope"></i></a>
<a class="btn btn-dark btn-social mx-2" href="tel:7597911373" aria-label="Akshat Phone"><i class="fa fa-phone"></i></a>
<a class="btn btn-dark btn-social mx-2" href="https://www.linkedin.com/in/akshat-rampuria-942552200/" aria-label="Akshat LinkedIn Profile"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
<!-- <div class="col-lg-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="assets/img/team/2.jpg" alt="..." />
<h4>Diana Petersen</h4>
<p class="text-muted">Lead Marketer</p>
<a class="btn btn-dark btn-social mx-2" href="#!" aria-label="Diana Petersen Twitter Profile"><i class="fab fa-twitter"></i></a>
<a class="btn btn-dark btn-social mx-2" href="#!" aria-label="Diana Petersen Facebook Profile"><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-dark btn-social mx-2" href="#!" aria-label="Diana Petersen LinkedIn Profile"><i class="fab fa-linkedin-in"></i></a>
</div>
</div> -->
<div class="col-lg-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="assets/img/team/3.jpg" alt="..." />
<h4>Shashwat Singh</h4>
<p class="text-muted">Secretary Web and Design Society</p>
<a class="btn btn-dark btn-social mx-2" href="mailto:secyweb.sg@iitbbs.ac.in" aria-label="Shashwat Email"><i class="fa fa-envelope"></i></a>
<a class="btn btn-dark btn-social mx-2" href="tel:7985417601" aria-label="Shashwat Phone"><i class="fa fa-phone"></i></a>
<a class="btn btn-dark btn-social mx-2" href="https://www.linkedin.com/in/shashwatsingh545/" aria-label="Shashwat LinkedIn Profile"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
<!-- <div class="row">
<div class="col-lg-8 mx-auto text-center"><p class="large text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut eaque, laboriosam veritatis, quos non quis ad perspiciatis, totam corporis ea, alias ut unde.</p></div>
</div> -->
</div>
</section>
<!-- Clients-->
<!-- <div class="py-5">
<div class="container">
<div class="row align-items-center">
<div class="col-md-3 col-sm-6 my-3">
<a href="#!"><img class="img-fluid img-brand d-block mx-auto" src="assets/img/logos/microsoft.svg" alt="..." aria-label="Microsoft Logo" /></a>
</div>
<div class="col-md-3 col-sm-6 my-3">
<a href="#!"><img class="img-fluid img-brand d-block mx-auto" src="assets/img/logos/google.svg" alt="..." aria-label="Google Logo" /></a>
</div>
<div class="col-md-3 col-sm-6 my-3">
<a href="#!"><img class="img-fluid img-brand d-block mx-auto" src="assets/img/logos/facebook.svg" alt="..." aria-label="Facebook Logo" /></a>
</div>
<div class="col-md-3 col-sm-6 my-3">
<a href="#!"><img class="img-fluid img-brand d-block mx-auto" src="assets/img/logos/ibm.svg" alt="..." aria-label="IBM Logo" /></a>
</div>
</div>
</div>
</div> -->
<!-- Contact-->
<!-- <section class="page-section" id="contact">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">Contact Us</h2>
<h3 class="section-subheading text-muted">Lorem ipsum dolor sit amet consectetur.</h3>
</div> -->
<!-- * * * * * * * * * * * * * * *-->
<!-- * * SB Forms Contact Form * *-->
<!-- * * * * * * * * * * * * * * *-->
<!-- This form is pre-integrated with SB Forms.-->
<!-- To make this form functional, sign up at-->
<!-- https://startbootstrap.com/solution/contact-forms-->
<!-- to get an API token!-->
<!-- <form id="contactForm" data-sb-form-api-token="API_TOKEN">
<div class="row align-items-stretch mb-5">
<div class="col-md-6">
<div class="form-group"> -->
<!-- Name input-->
<!-- <input class="form-control" id="name" type="text" placeholder="Your Name *" data-sb-validations="required" />
<div class="invalid-feedback" data-sb-feedback="name:required">A name is required.</div>
</div>
<div class="form-group"> -->
<!-- Email address input-->
<!-- <input class="form-control" id="email" type="email" placeholder="Your Email *" data-sb-validations="required,email" />
<div class="invalid-feedback" data-sb-feedback="email:required">An email is required.</div>
<div class="invalid-feedback" data-sb-feedback="email:email">Email is not valid.</div>
</div> -->
<!-- <div class="form-group mb-md-0"> -->
<!-- Phone number input-->
<!-- <input class="form-control" id="phone" type="tel" placeholder="Your Phone *" data-sb-validations="required" />
<div class="invalid-feedback" data-sb-feedback="phone:required">A phone number is required.</div>
</div>
</div> -->
<!-- <div class="col-md-6">
<div class="form-group form-group-textarea mb-md-0"> -->
<!-- Message input-->
<!-- <textarea class="form-control" id="message" placeholder="Your Message *" data-sb-validations="required"></textarea>
<div class="invalid-feedback" data-sb-feedback="message:required">A message is required.</div>
</div>
</div>
</div> -->
<!-- Submit success message-->
<!---->
<!-- This is what your users will see when the form-->
<!-- has successfully submitted-->
<!-- <div class="d-none" id="submitSuccessMessage">
<div class="text-center text-white mb-3">
<div class="fw-bolder">Form submission successful!</div>
To activate this form, sign up at
<br />
<a href="https://startbootstrap.com/solution/contact-forms">https://startbootstrap.com/solution/contact-forms</a>
</div>
</div> -->
<!-- Submit error message-->
<!---->
<!-- This is what your users will see when there is-->
<!-- an error submitting the form-->
<!-- <div class="d-none" id="submitErrorMessage"><div class="text-center text-danger mb-3">Error sending message!</div></div> -->
<!-- Submit Button-->
<!-- <div class="text-center"><button class="btn btn-primary btn-xl text-uppercase disabled" id="submitButton" type="submit">Send Message</button></div>
</form>
</div>
</section> -->
<!-- Footer-->
<footer class="footer py-4">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-4 text-lg-start">Copyright © Web and Design Society 2022</div>
<div class="col-lg-4 my-3 my-lg-0">
<!-- <a class="btn btn-dark btn-social mx-2" href="#!" aria-label="Twitter"><i class="fab fa-twitter"></i></a> -->
<a class="btn btn-dark btn-social mx-2" href="https://www.instagram.com/stc.iitbbs/" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
<!-- <a class="btn btn-dark btn-social mx-2" href="#!" aria-label="LinkedIn"><i class="fab fa-linkedin-in"></i></a> -->
</div>
<div class="col-lg-4 text-lg-end">
<!-- <a class="link-dark text-decoration-none me-3" href="#!">Privacy Policy</a>
<a class="link-dark text-decoration-none" href="#!">Terms of Use</a> -->
</div>
</div>
</div>
</footer>
<!-- Portfolio Modals-->
<!-- Portfolio item 1 modal popup-->
<div class="portfolio-modal modal fade" id="portfolioModal1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-bs-dismiss="modal"><img src="assets/img/close-icon.svg" alt="Close modal" /></div>
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="modal-body">
<!-- Project details-->
<h2 class="text-uppercase">Hack the Box</h2>
<img class="img-fluid d-block mx-auto" src="assets/img/societies images/society3.png" alt="..." />
<!-- <p style="text-align:justify;">To all the creative and talented writers out there, pick up your pen and get ready. In collaboration with Panacea, English literary society of IIT Bhubaneswar, and Abhivyakti, Hindi literary society of IIT Bhubaneswar, we are organizing two essay writing competitions, one for English and the other for Hindi. Do participate and present your ideas to whole India!
<br><br><b>THEME:
<br>1. Compose a substitute closure for any cosmic film of your advantage.
<br>2. Express your considerations about the paradox of 9th planet in our Solar
System.</b>
<hr>
<p style="text-align:justify;"><b>Date: 21st May to <i>6th June</i>, 2021.
<br><br>Reward: “Certificate of Excellence” to top three participants. Also, their names will be highlighted on Instagram for at least a week!
<br><br>RULES:
<br>1. Choose anyone of the two themes given above and write an article / essay on it.
<br>2. Submit your entries as .pdf or word document (typed only)
<br><br>For submissions, send your entries to: secylitsoc.sg@iitbbs.ac.in
<br>The subject of your email should be of the format: [Your name] [Your college name] [The topic of your article/essay]
<br>Your email should contain your details (Your name, contact number (preferably Whatsapp), your Institution name, and your Instagram ID (if any)).
<br><br>DEADLINE: <i>6th June</i>, 2021. (Deadline has been extended).
<br><br><i>In case of any issue, please contact on the email ID given above.</i>
<br><br>The results will be declared on this website and on the Instagram handles of Nakshatra and Panacea on Evening of <i>13th June</i>, 2021.
<br><br><i>*The Rules are subject to change. Nakshatra and the collaborating society (if any) will have the final decision on the competition (including the results).</i>
</b></p>
</p> -->
<a href="https://forms.gle/hdf5m7xACPx3w8Py8" target="_blank"><button class="btn btn-primary btn-xl text-uppercase" type="button">
Count me in
</button></a>
<button class="btn btn-primary btn-xl text-uppercase" data-bs-dismiss="modal" type="button">
<i class="fas fa-xmark me-1"></i>
Close
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio item 2 modal popup-->
<div class="portfolio-modal modal fade" id="portfolioModal2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-bs-dismiss="modal"><img src="assets/img/close-icon.svg" alt="Close modal" /></div>
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="modal-body">
<!-- Project details-->
<h2 class="text-uppercase">CodeVerse</h2>
<img class="img-fluid d-block mx-auto" src="assets/img/societies images/society3.png" alt="..." />
<!-- <p style="text-align:justify;">To all the creative and talented writers out there, pick up your pen and get ready. In collaboration with Panacea, English literary society of IIT Bhubaneswar, and Abhivyakti, Hindi literary society of IIT Bhubaneswar, we are organizing two essay writing competitions, one for English and the other for Hindi. Do participate and present your ideas to whole India!
<br><br><b>विषय-
<br>1. इसरो के किसी एक आगामी मिशन के बारे में एक लेख लिखें
<br>2. अंतरिक्ष कचरे की समस्या के बारे में एक लेख लिखें और इस मुद्दे से निपटने के कुछ तरीके सुझाएं। </b>
<hr>
<p style="text-align:justify;"><b>Date: 21st May to <i>6th June</i>, 2021.
<br><br>Reward: “Certificate of Excellence” to top three participants. Also, their names will be highlighted on Instagram for at least a week!
<br><br>नियम:
<br>1. इनमें से किसी एक विषय पर लिखें।
<br>2. कृपया 31 मई से पहले अपनी प्रविष्टियां जमा करें।
<br>3. कृपया अपना लेख 5०० से कम शब्दों में लिखें।
<br><br>For submissions, please click on the 'Count Me In' button and you will be redirected to the form.
<br><br><i>In case of any issue, please contact at: secylitsoc.sg@iitbbs.ac.in</i>
<br><br>The results will be declared on this website and on the Instagram handles of Nakshatra and Abhivyakti on Evening of <i>13th June</i>, 2021.
<br><br><i>*The Rules are subject to change. Nakshatra and the collaborating society (if any) will have the final decision on the competition (including the results).</i>
</b></p>
</p> -->
<a href=" https://forms.gle/eUJ9eFphWHAs9pbHA" target="_blank"><button class="btn btn-primary btn-xl text-uppercase" type="button">
Count me in
</button></a>
<button class="btn btn-primary btn-xl text-uppercase" data-bs-dismiss="modal" type="button">
<i class="fas fa-xmark me-1"></i>
Close
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio item 3 modal popup-->
<div class="portfolio-modal modal fade" id="portfolioModal3" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-bs-dismiss="modal"><img src="assets/img/close-icon.svg" alt="Close modal" /></div>
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="modal-body">
<!-- Project details-->
<h2 class="text-uppercase">Uxtivity</h2>
<img class="img-fluid d-block mx-auto" src="assets/img/societies images/society2.png" alt="..." style ="border:2px solid black; border-radius: 10px;" />
<!-- <p style="text-align:justify;">The vast universe holding millions of secrets, full of explosions blazes destructions yet creates one of the most fascinating and calming sights to behold and to paint. <br><br>Nakshatra, the astronomy society of IIT Bhubaneswar, is here with an astronomy-themed painting competition. <br><br>So, showcase the artist in you and paint your version of beautiful space splattered with innumerable stars and other elements decorating it. Do participate.
<br><br><b>THEME:
<br>1) Milky Way
<br>2) Aurora Art</b>
<hr>
<p style="text-align:justify;"><b>Date: 21st May to <i>6th June</i>, 2021. <br><br>Reward: “Certificate of Excellence” to top three participants. Also, their names will be highlighted on Instagram for at least a week!
<br><br>RULES:
<br>1. The Painting should be based on any one or both of the themes provided above.
<br><br>DEADLINE: <i>6th June</i>, 2021
<br><br>For submissions, please click on the 'Count Me In' button and you will be redirected to the form.
<br><br><i>For any queries, contact Abantika Karmakar – 90317987748 or email at: ak83@iitbbs.ac.in</i>
<br><br>The results will be declared on this website and on the Instagram handles of Nakshatra on Evening of <i>13th June</i>, 2021.
<br><br><i>*The Rules are subject to change. Nakshatra and the collaborating society (if any) will have the final decision on the competition (including the results).</i>
</b></p>
</p> -->
<a href=" https://forms.gle/TnPcLKvc2BArLnad8" target="_blank"><button class="btn btn-primary btn-xl text-uppercase" type="button">
Count me in
</button></a>
<button class="btn btn-primary btn-xl text-uppercase" data-bs-dismiss="modal" type="button">
<i class="fas fa-xmark me-1"></i>
Close
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio item 4 modal popup-->
<div class="portfolio-modal modal fade" id="portfolioModal4" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-bs-dismiss="modal"><img src="assets/img/close-icon.svg" alt="Close modal" /></div>
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="modal-body">
<!-- Project details-->
<h2 class="text-uppercase">Investo</h2>
<img class="img-fluid d-block mx-auto" src="assets/img/societies images/febs.jpg" alt="..." style ="border:2px solid black; border-radius: 10px;" />
<!-- <p style="text-align:justify;">Digital world... <br><br>Everything is digital in this modern era. Let it be books, media, entertainment and what not? Even Art has become digital! <br><br>Here comes Nakshatra, the Astronomy society of IIT Bhubanewar with its Digital Art Competition, DigiChamp inspiring the new and digitalized class of artists. Competition brings out the best skills in one's work. So, why don't you sharpen your skills in digital art by participating and showcasing your talent in this competition? <br><br>Get ready! DigiChamp is here to give you a platform to bring out the digital artist in you.</p>
<br><br><b>THEME: Digital Illustration of a Solar System</b>
<hr> -->
<!--<p style="text-align:center;"> Date: 21st May to 31st May, 2021. </p>
<p style="text-align:center;"> Reward: “Certificate of Excellence” to top three participants. Also, their names will be highlighted on Instagram for at least a week! </p>
<p style="text-align:center;"> The rules and other details will be updated on this website on 21st May. </p>-->
<!-- <p style="text-align:justify;"><b>Date: 21st May to <i>6th June</i>, 2021.<br><br>Reward: “Certificate of Excellence” to top three participants. Also, their names will be highlighted on Instagram for at least a week!
<br><br>RULES:
<br>1) It must be an original artwork.
<br>2) The artwork must be in JPEG format
<br><br>DEADLINE: <i>6th June</i>, 2021 (Deadline extended).
<br><br>For submissions, please click on the 'Count Me In' button and you will be redirected to the form.
<br><br><i>For any queries, contact Abantika Karmakar – 90317987748 or email at: ak83@iitbbs.ac.in</i>
<br><br>The results will be declared on this website and on the Instagram handles of Nakshatra on Evening of <i>13th June</i>, 2021.
<br><br><i>*The Rules are subject to change. Nakshatra and the collaborating society (if any) will have the final decision on the competition (including the results).</i>
</b></p> -->
<a href="https://forms.gle/q8vpaYL17tSRDgvC8" target="_blank"><button class="btn btn-primary btn-xl text-uppercase" type="button">
Count me in
</button></a>
<button class="btn btn-primary btn-xl text-uppercase" data-bs-dismiss="modal" type="button">
<i class="fas fa-xmark me-1"></i>
Close
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio item 5 modal popup-->
<div class="portfolio-modal modal fade" id="portfolioModal5" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-bs-dismiss="modal"><img src="assets/img/close-icon.svg" alt="Close modal" /></div>
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="modal-body">
<!-- Project details-->
<h2 class="text-uppercase">BIOT</h2>
<img class="img-fluid d-block mx-auto" src="assets/img/societies images/society8.png" style ="border:2px solid black; border-radius: 10px;" alt="..." />
<!-- <p style="text-align:justify;">Astronomy embraces the full range of natural phenomena—from the physics of invisible elementary particles as well as celestial bodies, to nature of space and time, to biology—thus providing a powerful framework for illustrating the beauty of our extravagant universe. We are gratified to inform you that Nakshatra, Astronomy Society of IIT Bhubaneswar in collaboration with Web and Design Society, IIT Bhubaneswar will be organizing a Graphics Designing Competition. <br><br>Do take part in the contest as it will take your creativity and imagination to a next level, and help you to think beyond yourself with certain fascination.
<br><br><b>THEME:
<br>1) <i>Collision of Two Black Holes</i>
<br>2) <i>Total Solar Eclipse</i></b>
</p>
<hr>
<p style="text-align:justify;"><b>Date: 21st May to <i>6th June</i>, 2021.<br><br>Reward: “Certificate of Excellence” to top three participants. Also, their names will be highlighted on Instagram for at least a week!</b>
<b><br><br>RULES:
<br>1. Participants have to submit a design on any of the above topics or both. It should
be either in Illustrator or Photoshop.
<br>2. Participation should be on an individual basis.
<br>3. Only landscape images are allowed.
<br>4. The designed poster should be in JPEG format. The .ai/.psd files also have to be
submitted along with the poster.
<br>5. All entries have to be submitted via google form. The file name should be in the
format: [participant's full name_college name]
<br><br>For Submissions, please click on the 'Count Me In' button and you will be redirected to the form.
<i><br><br>In case of any issues, please contact:
<br>S L Krishna: 9666798789
<br>Shashwat Singh: 7985417601</i>
<br><br>The results will be declared on this website and on the Instagram handles of Nakshatra and WebnD on Evening of <i>13th June</i>, 2021.
<br><br><i>*The Rules are subject to change. Nakshatra and the collaborating society (if any) will have the final decision on the competition (including the results).</i>
</b></p> -->
<a href="https://forms.gle/V9BqSb4zmGSzmMqT8" target="_blank"><button class="btn btn-primary btn-xl text-uppercase" type="button">
Count me in
</button></a>
<button class="btn btn-primary btn-xl text-uppercase" data-bs-dismiss="modal" type="button">
<i class="fas fa-xmark me-1"></i>
Close
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio item 6 modal popup-->
<div class="portfolio-modal modal fade" id="portfolioModal6" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-bs-dismiss="modal"><img src="assets/img/close-icon.svg" alt="Close modal" /></div>
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="modal-body">
<!-- Project details-->
<h2 class="text-uppercase">RUFURYUS</h2>
<img class="img-fluid d-block mx-auto" src="assets/img/societies images/society8.png" alt="..." />
<!-- <p style="text-align:justify;">For all the photography enthusiasts out there, Nakshatra has organised an astrophotography competition. So grab your cameras and get ready to flaunt your skills. The photographs can be captured using a digital camera or a smartphone. <br><br>Do take part and capture the beauty of the cosmos! <br><br>Further, we want to thank our event partner <i>Astrophotography India</i> for their valuable contribution in this competition.
<br><br><b>Theme: <i>“Elements of The Night Sky”</i></b>
<br>As the theme suggests, the photograph submitted should have elements of the night sky as the main subject of the photograph. This can include a wide variety of styles and interpretations. It is recommended and encouraged that the images be framed around the genre of astrophotography. However, photography being a creative endeavour, any other type of image with elements from the night sky are also welcome.
</b>
<hr>
<p style="text-align:justify;"><b>Date: 21st May to <i>6th June</i>, 2021.<br><br>Reward: “Certificate of Excellence” to top three participants. Also, their names will be highlighted on Instagram for at least a week!
<br><br>RULES:
<br>1. Photographs can be captured using a digital camera or smartphone.
<br>2. Multiple exposures are allowed.
<br>3. Shutter speed, aperture, ISO and focal length need to be provided
during submission. EXIF data embedded in the submitted file is also
acceptable.
<br>4. Post processing including stacking and blending of images is allowed.
<br>5. Star trail photography is allowed.
<br>6. Resolution of the photograph submitted should not be less than 2
megapixels and not more than 30 megapixels.
<br>7. File format for submission is JPEG.
<br>8. Only 1 entry per person is allowed. No multiple entries.
<br>9. The form will accept responses till 12:00 midnight, 31st May, 2021.
<br><br>JUDGING CRITERIA:
<br>1. Every entry will be marked out of 10 marks in the following fashion:
<br>5 marks for the composition
<br>5 marks for the image quality
<br>2. It is to be noted that any number of marks out of 10 (including
fractional values) can be awarded to a participant.
<br>3. The photographs submitted by the participants need to be taken by
them. In case it is found that the photograph submitted by the
participant has been taken by someone else, the concerned
participant will be disqualified.
<br><br><i>In case of any issues, please contact:
<br>Vardhan Mittal - 8052009988
<br>Aniket Singh - 6299829508</i>
<br><i>Or email us at: secyastronomy.sg@iitbbs.ac.in</i>
<br><br>For submissions, please click on 'Count Me In' button and you will be redirected to the form.
<br><br>The result will be declared on this website and on the Instagram handle of Nakshatra and Clix on evening of <i>13th June</i>, 2021.
<br><br><i>*The Rules are subject to change. Nakshatra and the collaborating society (if any) will have the final decision on the competition (including the results).</i>
</b></p>
</p> -->
<a href=" https://forms.gle/DbkVthUCpgBJPjLq9" target="_blank"><button class="btn btn-primary btn-xl text-uppercase" type="button">
Count me in
</button></a>
<button class="btn btn-primary btn-xl text-uppercase" data-bs-dismiss="modal" type="button">
<i class="fas fa-xmark me-1"></i>
Close
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio item 7 modal popup-->
<div class="portfolio-modal modal fade" id="portfolioModal7" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-bs-dismiss="modal"><img src="assets/img/close-icon.svg" alt="Close modal" /></div>
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="modal-body">
<!-- Project details-->
<h2 class="text-uppercase">ASTRAZENECA</h2>
<img class="img-fluid d-block mx-auto" src="assets/img/societies images/society1.png" alt="..." />
<!-- <p style="text-align:justify;">For all the photography enthusiasts out there, Nakshatra has organised an astrophotography competition. So grab your cameras and get ready to flaunt your skills. The photographs can be captured using a digital camera or a smartphone. <br><br>Do take part and capture the beauty of the cosmos! <br><br>Further, we want to thank our event partner <i>Astrophotography India</i> for their valuable contribution in this competition.
<br><br><b>Theme: <i>“Elements of The Night Sky”</i></b>
<br>As the theme suggests, the photograph submitted should have elements of the night sky as the main subject of the photograph. This can include a wide variety of styles and interpretations. It is recommended and encouraged that the images be framed around the genre of astrophotography. However, photography being a creative endeavour, any other type of image with elements from the night sky are also welcome.
</b>
<hr>
<p style="text-align:justify;"><b>Date: 21st May to <i>6th June</i>, 2021.<br><br>Reward: “Certificate of Excellence” to top three participants. Also, their names will be highlighted on Instagram for at least a week!
<br><br>RULES:
<br>1. Photographs can be captured using a digital camera or smartphone.
<br>2. Multiple exposures are allowed.
<br>3. Shutter speed, aperture, ISO and focal length need to be provided
during submission. EXIF data embedded in the submitted file is also
acceptable.
<br>4. Post processing including stacking and blending of images is allowed.
<br>5. Star trail photography is allowed.
<br>6. Resolution of the photograph submitted should not be less than 2
megapixels and not more than 30 megapixels.
<br>7. File format for submission is JPEG.
<br>8. Only 1 entry per person is allowed. No multiple entries.
<br>9. The form will accept responses till 12:00 midnight, 31st May, 2021.
<br><br>JUDGING CRITERIA:
<br>1. Every entry will be marked out of 10 marks in the following fashion:
<br>5 marks for the composition
<br>5 marks for the image quality
<br>2. It is to be noted that any number of marks out of 10 (including
fractional values) can be awarded to a participant.
<br>3. The photographs submitted by the participants need to be taken by
them. In case it is found that the photograph submitted by the
participant has been taken by someone else, the concerned
participant will be disqualified.
<br><br><i>In case of any issues, please contact:
<br>Vardhan Mittal - 8052009988
<br>Aniket Singh - 6299829508</i>
<br><i>Or email us at: secyastronomy.sg@iitbbs.ac.in</i>
<br><br>For submissions, please click on 'Count Me In' button and you will be redirected to the form.
<br><br>The result will be declared on this website and on the Instagram handle of Nakshatra and Clix on evening of <i>13th June</i>, 2021.
<br><br><i>*The Rules are subject to change. Nakshatra and the collaborating society (if any) will have the final decision on the competition (including the results).</i>
</b></p>
</p> -->
<a href="https://forms.gle/hH4RF47r91RvAVLh8" target="_blank"><button class="btn btn-primary btn-xl text-uppercase" type="button">
Count me in
</button></a>
<button class="btn btn-primary btn-xl text-uppercase" data-bs-dismiss="modal" type="button">
<i class="fas fa-xmark me-1"></i>
Close
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio item 8 modal popup-->
<div class="portfolio-modal modal fade" id="portfolioModal8" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-bs-dismiss="modal"><img src="assets/img/close-icon.svg" alt="Close modal" /></div>
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="modal-body">
<!-- Project details-->
<h2 class="text-uppercase">SHOOTING STARS</h2>
<img class="img-fluid d-block mx-auto" src="assets/img/societies images/society1.png" alt="..." />
<!-- <p style="text-align:justify;">For all the photography enthusiasts out there, Nakshatra has organised an astrophotography competition. So grab your cameras and get ready to flaunt your skills. The photographs can be captured using a digital camera or a smartphone. <br><br>Do take part and capture the beauty of the cosmos! <br><br>Further, we want to thank our event partner <i>Astrophotography India</i> for their valuable contribution in this competition.
<br><br><b>Theme: <i>“Elements of The Night Sky”</i></b>
<br>As the theme suggests, the photograph submitted should have elements of the night sky as the main subject of the photograph. This can include a wide variety of styles and interpretations. It is recommended and encouraged that the images be framed around the genre of astrophotography. However, photography being a creative endeavour, any other type of image with elements from the night sky are also welcome.
</b>
<hr>
<p style="text-align:justify;"><b>Date: 21st May to <i>6th June</i>, 2021.<br><br>Reward: “Certificate of Excellence” to top three participants. Also, their names will be highlighted on Instagram for at least a week!
<br><br>RULES:
<br>1. Photographs can be captured using a digital camera or smartphone.
<br>2. Multiple exposures are allowed.
<br>3. Shutter speed, aperture, ISO and focal length need to be provided
during submission. EXIF data embedded in the submitted file is also
acceptable.
<br>4. Post processing including stacking and blending of images is allowed.
<br>5. Star trail photography is allowed.
<br>6. Resolution of the photograph submitted should not be less than 2
megapixels and not more than 30 megapixels.
<br>7. File format for submission is JPEG.
<br>8. Only 1 entry per person is allowed. No multiple entries.
<br>9. The form will accept responses till 12:00 midnight, 31st May, 2021.
<br><br>JUDGING CRITERIA:
<br>1. Every entry will be marked out of 10 marks in the following fashion:
<br>5 marks for the composition
<br>5 marks for the image quality
<br>2. It is to be noted that any number of marks out of 10 (including
fractional values) can be awarded to a participant.
<br>3. The photographs submitted by the participants need to be taken by
them. In case it is found that the photograph submitted by the
participant has been taken by someone else, the concerned
participant will be disqualified.
<br><br><i>In case of any issues, please contact:
<br>Vardhan Mittal - 8052009988
<br>Aniket Singh - 6299829508</i>
<br><i>Or email us at: secyastronomy.sg@iitbbs.ac.in</i>
<br><br>For submissions, please click on 'Count Me In' button and you will be redirected to the form.
<br><br>The result will be declared on this website and on the Instagram handle of Nakshatra and Clix on evening of <i>13th June</i>, 2021.
<br><br><i>*The Rules are subject to change. Nakshatra and the collaborating society (if any) will have the final decision on the competition (including the results).</i>
</b></p>
</p> -->
<a href="https://forms.gle/9oYs1VxyMm5WzVsWA" target="_blank"><button class="btn btn-primary btn-xl text-uppercase" type="button">
Count me in