-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
628 lines (614 loc) · 39.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
<!DOCTYPE html>
<html data-bs-theme="dark">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>CRESCENDO 2024</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
</head>
<body>
<!-- <nav class="navbar navbar-expand-md fixed-top bg-darkest navbar-dark">
<div class="container-fluid">
<a class="navbar-brand" href="/">CRESCENDO</a><a class="navbar-brand">2024</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse"
aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav me-auto mb-2 mb-md-0">
<li class="nav-item">
<a class="nav-link" href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#events">Events</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./assets/Crescendo Brochure-6.pdf">Brochure</a>
</li>
</ul>
</div>
</div>
</nav> -->
<nav class="navbar navbar-expand-md fixed-top bg-darkest navbar-dark">
<div class="container-fluid">
<a class="navbar-brand" href="/">CRESCENDO</a><a class="navbar-brand">2024</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse"
aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav me-auto mb-2 mb-md-0">
<li class="nav-item">
<a class="nav-link" href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#events">Events</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link brochure-btn" href="./assets/Crescendo Brochure-6.pdf">Brochure</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="hero"></div>
<div class="container album my-5" id="events">
<div class="container text-center">
<h1 class="mb-4">Flagship Events</h1>
<div
class="d-flex justify-content-center align-items-center row row-cols-1 row-cols-sm-2 row-cols-md-2 row-cols-lg-3">
<div class="col mb-4">
<div class="carde">
<div class="wrapper">
<img src="./assets/img/hackathon.png" class="cover-image" />
</div>
<!-- <img src="assets/img/crmd-title.png" class="title" />
<img src="assets/img/crmd-3d-text.png" class="character" /> -->
</div>
<div class="apply-button" data-hackathon-slug="crescendo-crce-hackathon" data-button-theme="dark">
</div>
</div>
<div class="col mb-4">
<div class="carde">
<div class="wrapper">
<img src="./assets/img/elexathon.png" class="cover-image" />
</div>
<!-- <img src="assets/img/athlos-title.png" class="title" />
<img src="assets/img/athlos-3d-text.png" class="character" /> -->
</div>
<button type="button" class="btn btn-dark"
onclick="location.href='https://forms.gle/8tAwttZ7mBT4iWrE7';">Register</button>
</div>
<div class="col mb-4">
<div class="carde">
<div class="wrapper">
<img src="./assets/img/mechathon.png" class="cover-image" />
</div>
<!-- <img src="assets/img/title.png" class="title" />
<img src="assets/img/3d-text.png" class="character" /> -->
</div>
<button type="button" class="btn btn-dark"
onclick="location.href='https://forms.gle/qshQSXinvaMvzKNS6';">Register</button>
</div>
<div class="col mb-4">
<div class="carde">
<div class="wrapper">
<img src="./assets/img/robosumo.png" class="cover-image" />
</div>
<!-- <img src="assets/img/crmd-title.png" class="title" />
<img src="assets/img/crmd-3d-text.png" class="character" /> -->
</div>
<button type="button" class="btn btn-dark"
onclick="location.href='https://forms.gle/a5SbP9RfSRaQzdXLA'">Register</button>
</div>
</div>
</div>
</div>
<div class="container album my-5" id="events">
<div class="container text-center">
<h1 class="mb-4">Council Events</h1>
<div class="d-flex justify-content-center align-items-center row ">
<div class="col mb-4">
<article class="d-flex h-100" data-aos="fade-up" data-aos-delay="400">
<div id="app">
<div class="page">
<div class="front">
<div class="image"><img src="./assets/img/events/csi.jpg" alt="csi" title="csi" />
</div>
<div class="d-flex justify-content-center align-items-center text-center content">
<p class="nft-card-title">AI Deployer</p>
<p class="nft-card-text">In the AI Deployer competition, participants leverage
AI tools like ChatGPT and BARD to create dynamic frontend solutions within a
1-hour 15-minute sprint. They craft visually captivating, user-friendly
websites that capitalize on AI-driven content generation and design,
showcasing innovation and skill in the exciting realm of frontend
development.</p>
<p class="nft-card-click">Click here to flip!</p>
</div>
</div>
<div class="back">
<div class="profile csi"></div>
<button type="button" onclick="location.href='https://forms.gle/UEYRKkM9Mm3QKJx18'"
class="buttonpro text-white bg-gradient-to-r from-cyan-500 to-blue-500 hover:bg-gradient-to-bl focus:ring-4 focus:outline-none focus:ring-cyan-300 dark:focus:ring-cyan-800 font-medium rounded-lg text-sm px-5 py-2.5 text-center me-2 mb-2">
<span> Register </span>
</button>
</div>
</div>
</div>
</article>
</div>
<div class="col mb-4">
<article class="d-flex h-100" data-aos="fade-up" data-aos-delay="400">
<div id="app">
<div class="page">
<div class="front">
<div class="image"><img src="./assets/img/events/mozilla.jpg" alt="mozilla"
title="mozilla" />
</div>
<div class="d-flex justify-content-center align-items-center text-center content">
<p class="nft-card-title">PixelEase</p>
<p class="nft-card-text">Welcome to the PixelEase Challenge! Embark on a
creative journey, crafting captivating web designs within a tight 60-minute
timeframe. Share your creations on GitHub for expert evaluation, pushing the
boundaries of web design in this thrilling sprint where creativity knows no
bounds!</p>
<p class="nft-card-click">Click here to flip!</p>
</div>
</div>
<div class="back">
<div class="profile mozilla"></div>
</span>
<button type="button" onclick="location.href='https://forms.gle/1Mmx5RYn4jfABRsf7'"
class="buttonpro text-white bg-gradient-to-r from-cyan-500 to-blue-500 hover:bg-gradient-to-bl focus:ring-4 focus:outline-none focus:ring-cyan-300 dark:focus:ring-cyan-800 font-medium rounded-lg text-sm px-5 py-2.5 text-center me-2 mb-2">
<span> Register </span>
</button>
</div>
</div>
</div>
</article>
</div>
<div class="col mb-4">
<article class="d-flex h-100" data-aos="fade-up" data-aos-delay="400">
<div id="app">
<div class="page">
<div class="front">
<div class="image"><img src="./assets/img/events/codelabs.jpg" alt="codelabs"
title="codelabs" />
</div>
<div class="d-flex justify-content-center align-items-center text-center content">
<p class="nft-card-title">Code Runners</p>
<p class="nft-card-text">Participants will have to work towards solving a set of
problem statements with the lowest possible characters and execution runtime
for each problem statement. Participants need to choose the most optimal
approach to minimize both the number of characters and the execution time.
</p>
<p class="nft-card-click">Click here to flip!</p>
</div>
</div>
<div class="back">
<div class="profile codelabs"></div>
</span>
<button type="button" onclick="location.href='https://forms.gle/2wMjoCDykGFDo1nq6'"
class="buttonpro text-white bg-gradient-to-r from-cyan-500 to-blue-500 hover:bg-gradient-to-bl focus:ring-4 focus:outline-none focus:ring-cyan-300 dark:focus:ring-cyan-800 font-medium rounded-lg text-sm px-5 py-2.5 text-center me-2 mb-2">
<span> Register </span>
</button>
</div>
</div>
</div>
</article>
</div>
<div class="col mb-4">
<article class="d-flex h-100" data-aos="fade-up" data-aos-delay="400">
<div id="app">
<div class="page">
<div class="front">
<div class="image"><img src="./assets/img/events/gdsc.jpg" alt="gdsc"
title="gdsc" />
</div>
<div class="d-flex justify-content-center align-items-center text-center content">
<p class="nft-card-title">Virtual Escape Room</p>
<p class="nft-card-text">Participants engage in a virtual escape room experience
with 4 levels. Each successful
puzzle solution leads to the next level, and power-ups acquired along the
way assist in future challenges.</p>
<p class="nft-card-click">Click here to flip!</p>
</div>
</div>
<div class="back">
<div class="profile gdsc"></div>
</span>
<button type="button" onclick="location.href='https://forms.gle/8RbGQXxRXyidZXfb6'"
class="buttonpro text-white bg-gradient-to-r from-cyan-500 to-blue-500 hover:bg-gradient-to-bl focus:ring-4 focus:outline-none focus:ring-cyan-300 dark:focus:ring-cyan-800 font-medium rounded-lg text-sm px-5 py-2.5 text-center me-2 mb-2">
<span> Register </span>
</button>
</div>
</div>
</div>
</article>
</div>
<div class="col mb-4">
<article class="d-flex h-100" data-aos="fade-up" data-aos-delay="400">
<div id="app">
<div class="page">
<div class="front">
<div class="image"><img src="./assets/img/events/gda.jpg" alt="gda" title="gda" />
</div>
<div class="d-flex justify-content-center align-items-center text-center content">
<p class="nft-card-title">Cartographer's Quest</p>
<p class="nft-card-text">Cartographer's Quest is an event in which participants
are given to make a 3D map using blender software.</p>
<p class="nft-card-click">Click here to flip!</p>
</div>
</div>
<div class="back">
<div class="profile gda"></div>
</span>
<button type="button" onclick="location.href='https://forms.gle/FT9hAFmgea2ycu4K6'"
class="buttonpro text-white bg-gradient-to-r from-cyan-500 to-blue-500 hover:bg-gradient-to-bl focus:ring-4 focus:outline-none focus:ring-cyan-300 dark:focus:ring-cyan-800 font-medium rounded-lg text-sm px-5 py-2.5 text-center me-2 mb-2">
<span> Register </span>
</button>
</div>
</div>
</div>
</article>
</div>
<div class="col mb-4">
<article class="d-flex h-100" data-aos="fade-up" data-aos-delay="400">
<div id="app">
<div class="page">
<div class="front">
<div class="image"><img src="./assets/img/events/ieee.jpg" alt="ieee"
title="ieee" />
</div>
<div class="d-flex justify-content-center align-items-center text-center content">
<p class="nft-card-title">Dare to Race</p>
<p class="nft-card-text">"Dare to Race" presents an adrenaline-pumping
challenge, beginning with the Car Construction Phase, where teams construct
cars within a tight 2-hour window using provided components. This is
followed by the Racing Competition, where teams showcase their engineering
prowess in an exhilarating race to victory.</p>
<p class="nft-card-click">Click here to flip!</p>
</div>
</div>
<div class="back">
<div class="profile ieee"></div>
</span>
<button type="button" onclick="location.href='https://forms.gle/CkYYK4cPsf4FKJ3M9'"
class="buttonpro text-white bg-gradient-to-r from-cyan-500 to-blue-500 hover:bg-gradient-to-bl focus:ring-4 focus:outline-none focus:ring-cyan-300 dark:focus:ring-cyan-800 font-medium rounded-lg text-sm px-5 py-2.5 text-center me-2 mb-2">
<span> Register </span>
</button>
</div>
</div>
</div>
</article>
</div>
<div class="col mb-4">
<article class="d-flex h-100" data-aos="fade-up" data-aos-delay="400">
<div id="app">
<div class="page">
<div class="front">
<div class="image"><img src="./assets/img/events/acm.jpg" alt="acm" title="acm" />
</div>
<div class="d-flex justify-content-center align-items-center text-center content">
<p class="nft-card-title">Shark Tank</p>
<p class="nft-card-text">Participants register their innovative products on the
ACM CRCE website, avoiding conflicts through modification or withdrawal.
They seek public confidence via market surveys before pitching to judges in
the final round at Fr. CRCE, where scores determine the victors in this
exhilarating entrepreneurial journey.</p>
<p class="nft-card-click">Click here to flip!</p>
</div>
</div>
<div class="back">
<div class="profile acm"></div>
</span>
<button type="button" onclick="location.href='https://forms.gle/7arMmWQpTx1iXTXcA'"
class="buttonpro text-white bg-gradient-to-r from-cyan-500 to-blue-500 hover:bg-gradient-to-bl focus:ring-4 focus:outline-none focus:ring-cyan-300 dark:focus:ring-cyan-800 font-medium rounded-lg text-sm px-5 py-2.5 text-center me-2 mb-2">
<span> Register </span>
</button>
</div>
</div>
</div>
</article>
</div>
<div class="col mb-4">
<article class="d-flex h-100" data-aos="fade-up" data-aos-delay="400">
<div id="app">
<div class="page">
<div class="front">
<div class="image"><img src="./assets/img/events/mavericks.jpg" alt="Mavericks"
title="Mavericks" />
</div>
<div class="d-flex justify-content-center align-items-center text-center content">
<p class="nft-card-title">Drone Wiz Knowledge Jam</p>
<p class="nft-card-text">Embark on a challenge featuring Easy-Level MCQs, each
with 4 options, to test your team's knowledge. With 30 seconds per question,
earn points for correct answers while facing deductions for wrong ones.
Utilize hints wisely within the 40-minute timeframe, where quick thinking
and precision are key to success!</p>
<p class="nft-card-click">Click here to flip!</p>
</div>
</div>
<div class="back">
<div class="profile mavericks"></div>
</span>
<button type="button" onclick="location.href='https://forms.gle/jpojNwa2EgoaAx4FA'"
class="buttonpro text-white bg-gradient-to-r from-cyan-500 to-blue-500 hover:bg-gradient-to-bl focus:ring-4 focus:outline-none focus:ring-cyan-300 dark:focus:ring-cyan-800 font-medium rounded-lg text-sm px-5 py-2.5 text-center me-2 mb-2">
<span> Register </span>
</button>
</div>
</div>
</div>
</article>
</div>
<div class="col mb-4">
<article class="d-flex h-100" data-aos="fade-up" data-aos-delay="400">
<div id="app">
<div class="page">
<div class="front">
<div class="image"><img src="./assets/img/events/iiie.jpg" alt="iiie"
title="iiie" />
</div>
<div class="d-flex justify-content-center align-items-center text-center content">
<p class="nft-card-title">Bid Build Contest</p>
<p class="nft-card-text">
Teams compete in a high-stakes trivia showdown, earning points to secure
vital materials in an electrifying auction. With creativity ablaze, they
craft ingenious builds, aiming to dominate the challenge and claim victory
in a thrilling clash of innovation.</p>
<p class="nft-card-click">Click here to flip!</p>
</div>
</div>
<div class="back">
<div class="profile iiie"></div>
</span>
<button type="button" onclick="location.href='https://forms.gle/sPfkrW2YhQx6osda9'"
class="buttonpro text-white bg-gradient-to-r from-cyan-500 to-blue-500 hover:bg-gradient-to-bl focus:ring-4 focus:outline-none focus:ring-cyan-300 dark:focus:ring-cyan-800 font-medium rounded-lg text-sm px-5 py-2.5 text-center me-2 mb-2">
<span> Register </span>
</button>
</div>
</div>
</div>
</article>
</div>
<div class="col mb-4">
<article class="d-flex h-100" data-aos="fade-up" data-aos-delay="400">
<div id="app">
<div class="page">
<div class="front">
<div class="image"><img src="./assets/img/events/wie.jpg" alt="wie" title="wie" />
</div>
<div class="d-flex justify-content-center align-items-center text-center content">
<p class="nft-card-title">Peer Pong</p>
<p class="nft-card-text">Peer Pong is a team game where players aim ping pong
balls into cups on a table, each containing beginner-level tech questions or
activities. Teams take turns, answering or performing when a ball lands,
fostering both skill and knowledge in a fun setting.</p>
<p class="nft-card-click">Click here to flip!</p>
</div>
</div>
<div class="back">
<div class="profile wie"></div>
</span>
<button type="button" onclick="location.href='https://forms.gle/vGGPhb5Quwhpw9mm8'"
class="buttonpro text-white bg-gradient-to-r from-cyan-500 to-blue-500 hover:bg-gradient-to-bl focus:ring-4 focus:outline-none focus:ring-cyan-300 dark:focus:ring-cyan-800 font-medium rounded-lg text-sm px-5 py-2.5 text-center me-2 mb-2">
<span> Register </span>
</button>
</div>
</div>
</div>
</article>
</div>
<div class="col mb-4">
<article class="d-flex h-100" data-aos="fade-up" data-aos-delay="400">
<div id="app">
<div class="page">
<div class="front">
<div class="image"><img src="./assets/img/events/asme.jpg" alt="asme"
title="asme" />
</div>
<div class="d-flex justify-content-center align-items-center text-center content">
<p class="nft-card-title">Tech Trialathon</p>
<p class="nft-card-text">Gear up for an exhilarating adventure featuring car
football, gear challenges, buzz wire tests, and the ultimate bridge-building
showdown. Get ready to unleash your skills, conquer challenges, and dive
into non-stop excitement!</p>
<p class="nft-card-click">Click here to flip!</p>
</div>
</div>
<div class="back">
<div class="profile asme"></div>
</span>
<button type="button" onclick="location.href='https://forms.gle/SgMDNGc7PwVG4c6P7'"
class="buttonpro text-white bg-gradient-to-r from-cyan-500 to-blue-500 hover:bg-gradient-to-bl focus:ring-4 focus:outline-none focus:ring-cyan-300 dark:focus:ring-cyan-800 font-medium rounded-lg text-sm px-5 py-2.5 text-center me-2 mb-2">
<span> Register </span>
</button>
</div>
</div>
</div>
</article>
</div>
<div class="col mb-4">
<article class="d-flex h-100" data-aos="fade-up" data-aos-delay="400">
<div id="app">
<div class="page">
<div class="front">
<div class="image"><img src="./assets/img/events/ecell.jpg" alt="ecell"
title="ecell" />
</div>
<div class="d-flex justify-content-center align-items-center text-center content">
<p class="nft-card-title">Formula Unicorn</p>
<p class="nft-card-text">Embark on a quest to build your dream product by
selecting from a curated list of prestigious companies. Engage in a
heart-pounding auction to secure your chosen company, then unleash your
creativity to present your innovative vision, leveraging the company's
assets for success in a thrilling battle of ingenuity.</p>
<p class="nft-card-click">Click here to flip!</p>
</div>
</div>
<div class="back">
<div class="profile ecell"></div>
</span>
<button type="button" onclick="location.href='https://forms.gle/ZdGxm2ga2hNbSrmx9'"
class="buttonpro text-white bg-gradient-to-r from-cyan-500 to-blue-500 hover:bg-gradient-to-bl focus:ring-4 focus:outline-none focus:ring-cyan-300 dark:focus:ring-cyan-800 font-medium rounded-lg text-sm px-5 py-2.5 text-center me-2 mb-2">
<span> Register </span>
</button>
</div>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
<div class="container sponsors">
<div class="container text-center">
<h1 class="my-4">Platinum Sponsors</h1>
<section id="marquee">
<div class="view">
<div class="pic-container">
<div class="pic">
<a href="https://devfolio.co/" target="_blank"><img src="./assets/img/sponsors/devfolio.svg"
alt="DEVFOLIO LOGO"></a>
</div>
<div class="pic">
<a href="https://polygon.technology/" target="_blank"><img
src="./assets/img/sponsors/polygon.svg" alt="POLYGON LOGO"></a>
</div>
<div class="pic">
<a href="https://ethindia.co/" target="_blank"><img src="./assets/img/sponsors/ethindia.svg"
alt="ETHINDIA LOGO"></a>
</div>
<div class="pic">
<a href="https://devfolio.co/" target="_blank"><img src="./assets/img/sponsors/devfolio.svg"
alt="DEVFOLIO LOGO"></a>
</div>
<div class="pic">
<a href="https://polygon.technology/" target="_blank"><img
src="./assets/img/sponsors/polygon.svg" alt="POLYGON LOGO"></a>
</div>
<div class="pic">
<a href="https://ethindia.co/" target="_blank"><img src="./assets/img/sponsors/ethindia.svg"
alt="ETHINDIA LOGO"></a>
</div>
<div class="pic">
<a href="https://devfolio.co/" target="_blank"><img src="./assets/img/sponsors/devfolio.svg"
alt="DEVFOLIO LOGO"></a>
</div>
<div class="pic">
<a href="https://polygon.technology/" target="_blank"><img
src="./assets/img/sponsors/polygon.svg" alt="POLYGON LOGO"></a>
</div>
<div class="pic">
<a href="https://ethindia.co/" target="_blank"><img src="./assets/img/sponsors/ethindia.svg"
alt="ETHINDIA LOGO"></a>
</div>
</div>
</div>
</section>
<h1 class="my-4">Gold Sponsors</h1>
<section id="marquee">
<div class="view">
<div class="pic-container">
<div class="pic">
<a href="https://solana.com/" target="_blank"><img src="./assets/img/sponsors/solana.svg"
alt="SOLANA LOGO"></a>
</div>
<div class="pic">
<a href="https://filecoin.io/" target="_blank"><img src="./assets/img/sponsors/filecoin.svg"
alt="FILECOIN LOGO"></a>
</div>
<div class="pic">
<a href="https://replit.com/" target="_blank"><img src="./assets/img/sponsors/replit.svg"
alt="REPLIT LOGO"></a>
</div>
<div class="pic">
<a href="https://solana.com/" target="_blank"><img src="./assets/img/sponsors/solana.svg"
alt="SOLANA LOGO"></a>
</div>
<div class="pic">
<a href="https://filecoin.io/" target="_blank"><img src="./assets/img/sponsors/filecoin.svg"
alt="FILECOIN LOGO"></a>
</div>
<div class="pic">
<a href="https://replit.com/" target="_blank"><img src="./assets/img/sponsors/replit.svg"
alt="REPLIT LOGO"></a>
</div>
<div class="pic">
<a href="https://solana.com/" target="_blank"><img src="./assets/img/sponsors/solana.svg"
alt="SOLANA LOGO"></a>
</div>
<div class="pic">
<a href="https://filecoin.io/" target="_blank"><img src="./assets/img/sponsors/filecoin.svg"
alt="FILECOIN LOGO"></a>
</div>
<div class="pic">
<a href="https://replit.com/" target="_blank"><img src="./assets/img/sponsors/replit.svg"
alt="REPLIT LOGO"></a>
</div>
</div>
</div>
</section>
</div>
</div>
<div class="container my-5" id="contact">
<h1 class="title text-center mb-3">Contact Us</h1>
<div class="d-flex row justify-between my-5">
<div class="col-lg-6 col-12">
<iframe
src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d15085.76451410675!2d72.8203705!3d19.044333!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3be7c9410830616d%3A0x111b63353dbbce01!2sFr.%20Conceicao%20Rodrigues%20College%20of%20Engineering!5e0!3m2!1sen!2sin!4v1706421741186!5m2!1sen!2sin"
class="h-100 w-100 rounded-3" style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<div class="col-lg-6 col-12">
<form class="d-flex flex-column">
<div class="mb-3">
<label for="name" class="form-label">Name</label>
<input type="text" class="form-control" id="name" placeholder="Enter your name">
</div>
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" id="email" placeholder="Enter your email">
</div>
<div class="mb-3">
<label for="message" class="form-label">Message</label>
<textarea class="form-control" id="message" rows="4"
placeholder="Enter your message"></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
<div class="copyright-area">
<div class="container">
<div class="row align-items-center justify-content-center">
<div class="d-flex align-items-center justify-content-center text-center">
<div class="copyright-text">
<p>
©
<script>document.write(new Date().getFullYear());</script> All rights reserved by
Students' Council Fr.CRCE
|
Made by
<a href="https://linkedin.com/in/itsmehxrsh">Harsh Vishwakarma</a> &
<a href="https://github.com/Joshuadmello04">Joshua Dmello</a>.
</p>
</div>
</div>
</div>
</div>
</div>
<script defer async src="https://apply.devfolio.co/v2/sdk.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="./assets/js/main.js"></script>
</body>
</html>