-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
962 lines (957 loc) · 33.8 KB
/
index.html
File metadata and controls
962 lines (957 loc) · 33.8 KB
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
<!DOCTYPE html>
<html style="overflow-x: hidden">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, shrink-to-fit=no"
/>
<title>Home - CTE TechWeekend</title>
<meta name="description" content="TechWeekend 2021" />
<link
rel="stylesheet"
href="assets/bootstrap/css/bootstrap.min.css?h=c4031fd3279b72e347722c4068ca6ef9"
/>
<link
rel="manifest"
href="manifest.json?h=eed4d16da80411bc190c3c04527f71d5"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Catamaran:100,200,300,400,500,600,700,800,900"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto&display=swap"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css"
/>
<link
rel="stylesheet"
href="assets/css/untitled.css?h=35b9b19b5770cdb9e6538753ee1ff735"
/>
</head>
<body
class="
d-flex
flex-column flex-grow-1 flex-shrink-1 flex-fill
align-items-center align-content-center
"
style="
background: url('/assets/img/TechWeekend_light2_copy.svg'),
#ffffff;
background-size: contain, auto;
width:100%;
overflow-x:hidden;
overflow-y:hidden;
"
>
<nav
class="
navbar navbar-dark navbar-expand-lg
fixed-top
bg-dark
navbar-custom
"
style="
color: rgb(255, 255, 255);
background: linear-gradient(white 95%, rgb(255, 255, 255) 100%),
rgb(248, 248, 248);
height: 120;
max-height: 120;
width: 100vw;
"
>
<div class="container">
<a href="https://techweekend.bpgc-cte.org/"
><img
src="assets/img/cte-logo.png?h=5a0f8901967a21cd2e8638b2fc203321"
style="
width: 100;
height: 100;
max-width: 100;
max-height: 100px;
" /></a
><button
data-bs-toggle="collapse"
class="navbar-toggler"
data-bs-target="#navbarResponsive"
style="
color: var(--bs-blue);
width: 51;
height: 51;
margin: 4;
padding: 0 0;
background: url('https://pics.freeicons.io/uploads/icons/png/15211315791553239378-512.png'),
#45b334;
background-size: contain, auto;
"
>
<span class="visually-hidden">Toggle navigation</span
><span
class="navbar-toggler-icon"
style="
color: rgb(255, 252, 252);
background: url('https://pics.freeicons.io/uploads/icons/png/15211315791553239378-512.png'),
rgba(255, 255, 255, 0.14);
"
></span>
</button>
<div
class="collapse navbar-collapse"
id="navbarResponsive"
style="border-color: rgb(0, 0, 0); color: rgb(0, 0, 0)"
>
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a
class="nav-link active"
data-bss-hover-animate="shake"
href="#events"
style="border-color: rgb(0, 0, 0); color: rgb(0, 0, 0)"
>Events</a
>
</li>
<li class="nav-item">
<a
class="nav-link"
data-bss-hover-animate="shake"
href="talks.html"
style="color: rgb(0, 0, 0)"
>talks</a
>
</li>
<li class="nav-item">
<a
class="nav-link"
data-bss-hover-animate="shake"
href="winners.html"
style="color: rgb(0, 0, 0)"
>Winners</a
>
</li>
<li class="nav-item"></li>
<!-- <li class="nav-item"><a class="nav-link active" data-bss-hover-animate="shake" href="#" style="color: rgb(0,0,0);">Timeline</a></li> -->
<li class="nav-item">
<a
class="nav-link active"
data-bss-hover-animate="shake"
href="https://forum.bpgc-cte.org/"
target="_blank"
style="color: rgb(0, 0, 0)"
>Techforums</a
>
</li>
<li class="nav-item">
<a
class="nav-link active"
data-bss-hover-animate="shake"
href="https://bpgc-cte.org/"
target="_blank"
style="color: rgb(0, 0, 0)"
>website</a
>
</li>
</ul>
</div>
</div>
</nav>
<header
class="text-center text-white masthead"
style="
background: rgba(255, 255, 255, 0);
height: 100vh;
align-items: center;
justify-content: space-around;
transform: translateY(3%);
"
>
<div class="masthead-content">
<div class="container">
<h1
class="masthead-heading mb-0"
style="
font-family: Lato, sans-serif;
color: #45b334;
transform: scale(0.72);
background: rgba(132, 127, 127, 0.08);
"
>
CTE TechWeekend
</h1>
<h2
class="masthead-subheading mb-0"
style="
font-family: Lato, sans-serif;
color: #45b334;
background: rgba(150, 149, 149, 0);
"
>
Summer <strong>2021</strong><br />
</h2>
<h1 style="color: #45b334; transform: scale(0.6)">
Associate Sponsor : <a href="https://www.geeksforgeeks.org/"
><img
src="assets/img/GFG%20LOGO-3%20(1).png?h=161d3763c8528dff49daa8b164e866c5"
style="transform: scale(1); min-width: 4vw; min-height: 4vh; max-width: 8vw;"
/></a>
</h1>
</div>
</div>
</header>
<section id="events" style="background: #f7f7f7" >
<div class="container">
<div
class="row align-items-center"
style="
background: #f7f7f7;
border-color: rgb(43, 234, 26);
border-radius: 17px;
"
>
<div class="col-lg-6 order-lg-2">
<div class="p-5">
<img
class="img-thumbnail img-fluid"
src="assets/img/competitive.jpg?h=42e03e6ea852a7add1e621f650f0af78"
style="max-height: 35vh; max-width: 60vw"
/>
</div>
</div>
<div class="col-lg-6 order-lg-1">
<div class="p-5">
<h2 class="display-4" style="font-size: 40px">
#include <techweed.h>
</h2>
<h1 style="font-size: 17px; color: rgb(68, 205, 90)">
ALGOMANIAX
</h1>
<p class="text-start" style="color: rgb(33, 37, 41)">
Competitive coding is a mind sport that shall give you an
adrenaline rush. There will be about 5 questions that will
challenge you on logic, data structures, and implementation. The
event will be hosted on CodeChef and is open to all users.<br /><br />
</p>
<div class="row">
<div class="col text-start">
<p style="width: 135px">Date<br />Time<br />Prizes</p>
</div>
<div class="col">
<p style="color: rgb(122, 204, 109)">
9th July<br />9pm to 11:30pm<br />₹10000<br />
</p>
</div>
</div>
<button
class="btn btn-primary border rounded-0"
type="button"
style="
background: #44cd5a;
border-top-color: rgb(255, 255, 255);
border-right-color: rgb(255, 255, 255);
border-bottom-color: rgb(255, 255, 255);
border-left-color: rgb(252, 252, 252);
"
>
Completed
</button>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div
class="row align-items-center"
style="background: #ffffff; border-radius: 17px"
>
<div class="col-lg-6 order-lg-1">
<div class="p-5">
<img
class="img-thumbnail img-fluid"
src="assets/img/trading.jpg?h=ddd93c4e42efd53709ecd543a8515e11"
style="max-height: 35vh; max-width: 60vw;"
/>
</div>
</div>
<div class="col-lg-6 order-lg-2">
<div class="p-5">
<h2
class="display-4"
style="
background: #ffffff;
font-size: 40px;
font-family: Catamaran, sans-serif;
"
>
Crypto Mock Trading Challenge<br />
</h2>
<h1 style="font-size: 17px; color: rgb(68, 205, 90)">
WALL STREET CLUB
</h1>
<p style="background: #ffffff">
Have you ever wondered what it'd feel like to invest in crypto?
Is it really all about sheer luck or does logic work? <br />Wall
Street Club Bits Goa in collaboration with WazirX is bringing to
you a very lucrative platform to try your hand at
crypto! <br />The entire event comprises a webinar followed
by a mock trading competition.<br />In the competition you are
invited to mock buy and sell cryptocurrencies in a real-time
market simulator.<br />
</p>
<div class="row">
<div class="col text-start">
<p style="width: 135px">Date<br />Time<br />Prizes</p>
</div>
<div class="col">
<p style="color: rgb(122, 204, 109)">
10th-17th July<br />Starts and Ends at 6pm<br />₹25000<br />
</p>
</div>
</div>
<button
onclick="window.open('https://bp-gc.in/Tw21_mocktrading','_blank');"
class="btn btn-primary border rounded-0"
type="button"
style="
background: #44cd5a;
border-top-color: rgb(255, 255, 255);
border-right-color: rgb(255, 255, 255);
border-bottom-color: rgb(255, 255, 255);
border-left-color: rgb(252, 252, 252);
"
>
Register
</button>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div
class="row align-items-center"
style="
background: #f7f7f7;
border-color: rgb(43, 234, 26);
border-radius: 17px;
"
>
<div class="col-lg-6 order-lg-2">
<div class="p-5">
<img
class="img-thumbnail img-fluid"
src="assets/img/consulting.jpg?h=e1d10b58514a3326b13232047547c89e"
style="max-height: 35vh; max-width: 60vw;"
/>
</div>
</div>
<div class="col-lg-6 order-lg-1">
<div class="p-5">
<h2 class="display-4" style="font-size: 40px">
Consulting Case Study
</h2>
<h1 style="font-size: 17px; color: rgb(68, 205, 90)">
BITS GOA CONSULTING CLUB<br />
</h1>
<p class="text-start" style="color: rgb(33, 37, 41)">
CTE in association with BITS Goa Consulting Club brings you case
study competition, the best practical exercise of your grey
cells that uses your mental faculties and decision-making
skills.<br />
</p>
<div class="row">
<div class="col text-start">
<p style="width: 135px">Date<br />Time<br />Prizes</p>
</div>
<div class="col">
<p style="color: rgb(122, 204, 109)">
5th-8th July<br />All Day<br />₹3000<br />
</p>
</div>
</div>
<button
class="btn btn-primary border rounded-0"
type="button"
style="
background: #44cd5a;
border-top-color: rgb(255, 255, 255);
border-right-color: rgb(255, 255, 255);
border-bottom-color: rgb(255, 255, 255);
border-left-color: rgb(252, 252, 252);
"
>
Completed
</button>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div
class="row align-items-center"
style="background: #ffffff; border-radius: 17px"
>
<div class="col-lg-6 order-lg-1">
<div class="p-5">
<img
class="img-thumbnail img-fluid"
src="assets/img/arduino_open.jpg?h=ddd93c4e42efd53709ecd543a8515e11"
style="max-height: 37vh; max-width: 65vw;"
/>
</div>
</div>
<div class="col-lg-6 order-lg-2">
<div class="p-5">
<h2
class="display-4"
style="
background: #ffffff;
font-size: 40px;
font-family: Catamaran, sans-serif;
"
>
Arduino Open<br />
</h2>
<h1 style="font-size: 17px; color: rgb(68, 205, 90)">
ELECTRONICS AND ROBOTICS CLUB<br />
</h1>
<p style="background: #ffffff">
It's amazing how you can make something as functional as a
robotic arm at the same time as trivial as blinking an LED with
the same board. With an Arduino the only limit is your
imagination and thinking; you can make mind-blowing stuff
happen. So let that current flow through the processor of your
brain with Arduino Open, presented by CTE in association with
ERC. Don't worry about hardware, we will be using TinkerCAD for
the event. The event is for individual participants. Complete
the tasks to win exciting prizes.<br />
</p>
<div class="row">
<div class="col text-start">
<p style="width: 135px">Date<br />Time<br />Prizes</p>
</div>
<div class="col">
<p style="color: rgb(122, 204, 109)">
7th July<br />6:00 PM to 8:00 PM<br />₹5000<br />
</p>
</div>
</div>
<button
class="btn btn-primary border rounded-0"
type="button"
style="
background: #44cd5a;
border-top-color: rgb(255, 255, 255);
border-right-color: rgb(255, 255, 255);
border-bottom-color: rgb(255, 255, 255);
border-left-color: rgb(252, 252, 252);
"
>
Completed
</button>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div
class="row align-items-center"
style="
background: #f7f7f7;
border-color: rgb(43, 234, 26);
border-radius: 17px;
"
>
<div class="col-lg-6 order-lg-2">
<div class="p-5">
<img
class="img-thumbnail img-fluid"
src="assets/img/ctf.jpeg?h=08296d3033a48274ed6032a3b503666c"
style=""
/>
</div>
</div>
<div class="col-lg-6 order-lg-1">
<div class="p-5">
<h2 class="display-4" style="font-size: 40px">
Capture The Flag
</h2>
<h1 style="font-size: 17px; color: rgb(68, 205, 90)">
BITS KRIEG<br />
</h1>
<p class="text-start" style="color: rgb(33, 37, 41)">
CTE in association with BITS KRIEG brings you an ethical<br />
hacking capture the flag event modeled around flaws in<br />
real-life internet systems. Questions will be from beginner
to<br />
intermediate level.<br />
</p>
<div class="row">
<div class="col text-start">
<p style="width: 135px">Date<br />Time<br />Prizes</p>
</div>
<div class="col">
<p style="color: rgb(122, 204, 109)">
5th-7th July<br />All Day [12pm - 12pm]<br />₹10000+<br />
</p>
</div>
</div>
<button
class="btn btn-primary border rounded-0"
type="button"
style="
background: #44cd5a;
border-top-color: rgb(255, 255, 255);
border-right-color: rgb(255, 255, 255);
border-bottom-color: rgb(255, 255, 255);
border-left-color: rgb(252, 252, 252);
"
>
Completed
</button>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div
class="row align-items-center"
style="background: #ffffff; border-radius: 17px"
>
<div class="col-lg-6 order-lg-1">
<div class="p-5">
<img
class="img-thumbnail img-fluid"
src="assets/img/quant.jpeg?h=1b522c495d29eedf4516925efa877632"
style="max-height: 35vh"
/>
</div>
</div>
<div class="col-lg-6 order-lg-2">
<div class="p-5">
<h2
class="display-4"
style="
background: #ffffff;
font-size: 40px;
font-family: Catamaran, sans-serif;
"
>
Quantum Computing Hackathon<br />
</h2>
<h1 style="font-size: 17px; color: rgb(68, 205, 90)">
SEDS CELESTIA<br />
</h1>
<p style="background: #ffffff">
This TechWeekend, CTE in collaboration with SEDS Celestia brings Quantum Computing Hackathon.
This event aims to bring together people from a diverse set of backgrounds, including physics,
mathematics and computer science. The basic knowledge required to solve the questions will be provided,
including Qiskit basics. The hackathon will be include a set of challenges to be solved and coded with
the given material, to be submitted within the timeline. Correctness of code and timely submission matter equally.<br />
</p>
<div class="row">
<div class="col text-start">
<p style="width: 135px">Date<br />Time<br />Prizes</p>
</div>
<div class="col">
<p style="color: rgb(122, 204, 109)">
8th July - 11th July<br />All day<br />₹5000<br />
</p>
</div>
</div>
<button
class="btn btn-primary border rounded-0"
type="button"
style="
background: #44cd5a;
border-top-color: rgb(255, 255, 255);
border-right-color: rgb(255, 255, 255);
border-bottom-color: rgb(255, 255, 255);
border-left-color: rgb(252, 252, 252);
"
>
Completed </button>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div
class="row align-items-center"
style="
background: #f7f7f7;
border-color: rgb(43, 234, 26);
border-radius: 17px;
"
>
<div class="col-lg-6 order-lg-2">
<div class="p-5">
<img
class="img-thumbnail img-fluid"
src="assets/img/sedss.jpg"
style="max-height: 40vh "
/>
</div>
</div>
<div class="col-lg-6 order-lg-1">
<div class="p-5">
<h2 class="display-4" style="font-size: 40px">
Astro Photography Competition
</h2>
<h1 style="font-size: 17px; color: rgb(68, 205, 90)">
SEDS CELESTIA<br />
</h1>
<p class="text-start" style="color: rgb(33, 37, 41)">
This tech weekend get your cameras ready and delve into the deep
mysteries of the beautiful night sky. SEDS Celestia, the
astronomy, astrophysics and Space Tech club of BITS Goa brings
an astrophotography competition for y'all!<br />
</p>
<div class="row">
<div class="col text-start">
<p style="width: 135px">Date<br />Time<br />Prizes</p>
</div>
<div class="col">
<p style="color: rgb(122, 204, 109)">
5th-11th July<br />All Day<br />₹3000+<br />
</p>
</div>
</div>
<button
class="btn btn-primary border rounded-0"
type="button"
style="
background: #44cd5a;
border-top-color: rgb(255, 255, 255);
border-right-color: rgb(255, 255, 255);
border-bottom-color: rgb(255, 255, 255);
border-left-color: rgb(252, 252, 252);
"
>
Completed
</button>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div
class="row align-items-center"
style="background: #ffffff; border-radius: 17px"
>
<div class="col-lg-6 order-lg-1">
<div class="p-5">
<img
class="img-thumbnail img-fluid"
src="assets/img/ML.jpeg?h=61bf43109b986e4c2797dade5b40607b"
style="max-height: 35vh;"
/>
</div>
</div>
<div class="col-lg-6 order-lg-2">
<div class="p-5">
<h2
class="display-4"
style="
background: #ffffff;
font-size: 40px;
font-family: Catamaran, sans-serif;
"
>
ML Hackathon<br />
</h2>
<h1 style="font-size: 17px; color: rgb(68, 205, 90)">
SOCIETY FOR ARTIFICIAL INTELLIGENCE AND DEEP LEARNING<br />
</h1>
<p style="background: #ffffff">
Show off your Machine Learning skills in this Hackathon
starting July 5th!<br />There will be one problem statement
for which you would need to make a submission before 12th of
July, A very basic solution will be provided to help you get
started. The event will be held on Kaggle. Make sure you have
an account on Kaggle<br />
</p>
<div class="row">
<div class="col text-start">
<p style="width: 135px">Date<br />Time<br />Prizes</p>
</div>
<div class="col">
<p style="color: rgb(122, 204, 109)">
Weeklong[5th July - 12th July]<br />Allday<br />₹7000+<br />
</p>
</div>
</div>
<button
class="btn btn-primary border rounded-0"
type="button"
style="
background: #44cd5a;
border-top-color: rgb(255, 255, 255);
border-right-color: rgb(255, 255, 255);
border-bottom-color: rgb(255, 255, 255);
border-left-color: rgb(252, 252, 252);
"
>
Completed
</button>
</div>
</div>
</div>
</div>
</section>
</section>
<section>
<div class="container">
<div
class="row align-items-center"
style="
background: #f7f7f7;
border-color: rgb(43, 234, 26);
border-radius: 17px;
"
>
<div class="col-lg-6 order-lg-2">
<div class="p-5">
<img
class="img-thumbnail img-fluid"
src="assets/img/undraw_3d_modeling_h60h.png?h=fc9320a29a8c444cb9ab1a75792c5de9"
style="height: 302"
/>
</div>
</div>
<div class="col-lg-6 order-lg-1">
<div class="p-5">
<h2 class="display-4" style="font-size: 40px">
3-D Design Competition <br />
</h2>
<h1 style="font-size: 17px; color: rgb(68, 205, 90)">
AERODYNAMICS CLUB, ERC and SAE
</h1>
<p class="text-start" style="color: rgb(33, 37, 41)">
CTE presents its 3D model designing event "3D Design
Competition" in association with Aerodynamics Club, ERC and SAE.
Participants will be required to design a model of a part,
component or an entire structure from a limited set of inputs in
this event. <br />
</p>
<div class="row">
<div class="col text-start">
<p style="width: 135px">Date<br />Time<br />Prizes</p>
</div>
<div class="col">
<p style="color: rgb(122, 204, 109)">
11th July<br />3 PM - 6 PM<br />₹5000<br />
</p>
</div>
</div>
<button
class="btn btn-primary border rounded-0"
type="button"
style="
background: #44cd5a;
border-top-color: rgb(255, 255, 255);
border-right-color: rgb(255, 255, 255);
border-bottom-color: rgb(255, 255, 255);
border-left-color: rgb(252, 252, 252);
"
>
Completed
</button>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div
class="row align-items-center"
style="background: #ffffff; border-radius: 17px"
>
<div class="col-lg-6 order-lg-1">
<div class="p-5">
<img
class="
img-thumbnail img-fluid
d-flex
flex-grow-1 flex-shrink-1
justify-content-center
align-content-end
"
src="assets/img/mayd.jpeg?h=49744387bf00e5880f094da0c95e57bb"
style="max-height: 30vh"
/>
</div>
</div>
<div class="col-lg-6 order-lg-2">
<div class="p-5">
<h2
class="display-4"
style="
background: #ffffff;
font-size: 40px;
font-family: Catamaran, sans-serif;
"
>
MayDay Mysteries
</h2>
<h1 style="font-size: 17px; color: #44cd5a">AERO-D<br /></h1>
<p>
Our flagship homage to Air Crash Investigation; a competition
that allows you to step into the shoes of an air accident
investigating officer. Participants will be provided with
detailed scenarios of simulated plane crashes, with crash
reports, maintenance logs, weather reports, radar information,
and most crucially, CVR and FDR data. The participants will have
to come up with a detailed report describing the causes and
timeline of the crash and recommend safety features for the
future. So let your minds take off and work together to decipher
a real-life crisis.
</p>
<p style="background: #ffffff"></p>
<div class="row">
<div class="col text-start">
<p style="width: 135px">Date<br />Time<br />Prizes</p>
</div>
<div class="col">
<p style="color: rgb(122, 204, 109)">
9th July<br />6PM - 8PM<br />₹3000<br />
</p>
</div>
</div>
<button
class="btn btn-primary border rounded-0"
type="button"
style="
background: #44cd5a;
border-top-color: rgb(255, 255, 255);
border-right-color: rgb(255, 255, 255);
border-bottom-color: rgb(255, 255, 255);
border-left-color: rgb(252, 252, 252);
"
>
Completed
</button>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div
class="row align-items-center"
style="
background: #f7f7f7;
border-color: rgb(43, 234, 26);
border-radius: 17px;
"
>
<div class="col-lg-6 order-lg-2">
<div class="p-5">
<img
class="img-thumbnail img-fluid"
src="assets/img/art.jpeg?h=b94bb690c3c1c4328e25b69eccae2746"
style="max-height: 33vh"
/>
</div>
</div>
<div class="col-lg-6 order-lg-1">
<div class="p-5">
<h2 class="display-4" style="font-size: 40px">
Article Writing<br />
</h2>
<h1 style="font-size: 17px; color: rgb(68, 205, 90)">IEEE</h1>
<p class="text-start" style="color: rgb(33, 37, 41)">
IEEE, brings to you a unique event of its kind - a formal
research article writing contest. Research around the web,
collect the data out and pen out the most captivating articles
following scientific norms. At the end, the shortlisted
candidates will also get a chance to present their work in front
of the panel of judges and win huge cash prizes which are at
stake... So let the writer inside you, express its skills.<br />
</p>
<div class="row">
<div class="col text-start">
<p style="width: 135px">
Date<br /><br />Time<br /><br />Prizes
</p>
</div>
<div class="col">
<p style="color: rgb(122, 204, 109)">
8th July - 11th July<br/>All Day<br /><br />₹5000<br />
</p>
</div>
</div>
<button
class="btn btn-primary border rounded-0"
type="button"
style="
background: #44cd5a;
border-top-color: rgb(255, 255, 255);
border-right-color: rgb(255, 255, 255);
border-bottom-color: rgb(255, 255, 255);
border-left-color: rgb(252, 252, 252);
"
>
Completed
</button>
</div>
</div>
</div>
</div>
</section>
<footer
class="
d-flex
flex-column flex-grow-1 flex-shrink-1 flex-fill
justify-content-center
align-items-center align-content-center
py-5
bg-black
"
style="width: 100vw; height: 10vh"
>
<div class="container">
<p
class="
text-center text-white
d-flex
flex-column flex-grow-1 flex-shrink-1 flex-fill
justify-content-center
align-items-center align-content-center
flex-wrap
m-0
small
"
>
<br />Copyright © CTE 2021 <br />Designed and Developed by
Shreyas V, Darshan Khade, Robin Raj,Khushi Harsure, Abhaypreet<br />Special
Thanks to CTE PR Team for the images<br /><br />
</p>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/bs-init.js?h=7563c52cc0a72a92d96ce0159b71241c"></script>
</body>
</html>