forked from procheta1999/ECE-blogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
685 lines (665 loc) · 29.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tech-Eva | Home</title>
<!--CSS Rules and Links Go Here-->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="styles/styles_new.css" />
<!--Favicons-->
<link
rel="apple-touch-icon"
sizes="180x180"
href="/favicons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicons/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicons/favicon-16x16.png"
/>
</head>
<body class="d-flex flex-column h-100 bg-dark text-white">
<div class="wrapper">
<header class="container-lg" style="font-size: 40px">
<h1 class="text-center fw-bold display-1">
Tech<small class="text-muted">-Eva</small>
</h1>
</header>
<!--This bit is for the content of the navbar-->
<nav
class="navbar navbar-expand-lg navbar-dark bg-dark rounded"
aria-label="Twelfth navbar example"
>
<div class="container-fluid">
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarsExample10"
aria-controls="navbarsExample10"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse justify-content-md-center"
id="navbarsExample10"
>
<ul class="navbar-nav">
<li class="nav-item">
<a
class="nav-link active"
aria-current="page"
href="/index.html"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="/alt_about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/alt_events.html">Events</a>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle current"
href="#"
id="dropdown10"
data-bs-toggle="dropdown"
aria-expanded="false"
>Blogs</a
>
<ul class="dropdown-menu bg-dark" aria-labelledby="dropdown10">
<li>
<a class="dropdown-item text-light" href="/blogs20.html"
>Blog'O'Pedia V1.0 [2020]</a
>
</li>
<li>
<a class="dropdown-item text-light" href="/blogs21.html"
>Blog'O'Pedia V2.0 [2021]</a
>
</li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
</div>
<!--Hero Section-->
<hr />
<div class="bg-dark text-secondary px-4 py-5 text-center">
<div class="py-5">
<h1 class="display-5 fw-bold text-white">Welcome To Tech-Eva</h1>
<small class="display-6 fw-bold text-white text-muted"
>Blogs By ECE, NSEC</small
>
<br /><br />
<div class="col-lg-6 mx-auto">
<p class="fs-5 mb-4 fw-bold">
Welcome, dear reader! You've come to the place with the finest
assortment of blogs written by the best minds of ECE, NSEC. Feel
free to browse the fine selection of blogs from Blog'O'Pedia V1.0
and Blog'O'Pedia V2.0 on this page.
</p>
<img
src="https://images.unsplash.com/photo-1432821596592-e2c18b78144f?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80"
class="
img-fluid
rounded-pill
border border-light
shadow-lg
p-3
mb-5
bg-body
rounded
"
alt="..."
style="border: 5px solid;"
/>
<br /><br />
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<a href="https://forms.gle/nab82NuzmSL6yA9X7">
<button
type="button"
class="btn btn-lg btn-outline-danger rounded-pill"
>
Submission Link Closed
</button>
</a>
<a
href="https://docs.google.com/document/d/1bKeGnQLeK_cIVoKmaSDygq8GwAstuoFQpwp8Vn6DOjM/edit?usp=sharing"
>
<button
type="button"
class="btn btn-lg btn-outline-info rounded-pill"
>
Know The Rules
</button>
</a>
</div>
</div>
</div>
</div>
<!--Middle Section-->
<hr />
<!--Winners Section-->
<h1 class="text-center container">Winner Section</h1>
<div
class="row row-cols-1 row-cols-sm-2 row-cols-md-5 g-4"
style="padding: 5%"
>
<div class="col">
<div class="card h-100">
<img
src="Winners_images/debanita.jpg"
class="card-img-top"
alt="..."
style="border: 5px solid; color:#FAF0E6;"
/>
<div class="card-body" style="background-color: rgb(44, 43, 43); height: 150px;" >
<h5
class="card-title text-center fw-bold display-8"
>
<b style="color:#FAFAD2;">1st Position</b><br>
</h5>
<hr>
<h6 class="text-center fs-6 text-muted">CRISPR: Biopunk To Reality</h6>
</div>
<div class="card-footer text-center" style="background-color: rgb(44, 43, 43);">
<small class="fw-bold">Debanita Ghosh - 1st Year</small>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="Winners_images/alaska.jpg"
class="card-img-top"
alt="..."
style="border: 5px solid; color:#FAF0E6;"
/>
<div class="card-body" style="background-color: rgb(44, 43, 43); height: 150px;" >
<h5
class="card-title text-center fw-bold display-8"
><b style="color:#E0FFFF;">2nd Position</b><br>
</h5>
<hr>
<h6 class="text-center fs-6 text-muted">Future Tech: AI+RPA</h6>
</div>
<div class="card-footer text-center" style="background-color: rgb(44, 43, 43)">
<small class="fw-bold">Alaska - 1st Year</small>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="Winners_images/faruque.jpg"
class="card-img-top"
alt="..."
style="border: 5px solid; color:#FAF0E6;"
/>
<div class="card-body" style="background-color: rgb(44, 43, 43); height: 150px;" >
<h5
class="card-title text-center fw-bold display-8"
>
<b style="color:#E0FFFF;">2nd Position</b><br>
</h5>
<hr>
<h6 class="text-center fs-6 text-muted">FORT ‘ran to’ Julia</h6>
</div>
<div class="card-footer text-center" style="background-color: rgb(44, 43, 43)">
<small class="fw-bold">Faruque Aziz - 2nd Year</small>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="Winners_images/riddhi.jpg"
class="card-img-top"
alt="..."
style="border: 5px solid; color:#FAF0E6;"
/>
<div class="card-body" style="background-color: rgb(44, 43, 43); height: 150px;" >
<h5
class="card-title text-center fw-bold display-8"
><b style="color:#FFA07A;">3rd Position</b><br>
</h5>
<hr>
<h6 class="text-center fs-6 text-muted">MICROBIVORE: The Artificial Mechanical Phagocyte</h6>
</div>
<div class="card-footer text-center" style="background-color: rgb(44, 43, 43)">
<small class="fw-bold">Riddhi Mazumder - 1st year</small>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="Winners_images/procheta.jpg"
class="card-img-top"
alt="..."
style="border: 5px solid; color:#FAF0E6;"
/>
<div class="card-body" style="background-color: rgb(44, 43, 43); height: 150px;" >
<h5
class="card-title text-center fw-bold display-8"
>
<b style="color:#FFA07A;">3rd Position</b><br>
</h5><hr>
<h6 class="text-center fs-6 text-muted"> Lazy and Suspense!</h6>
</div>
<div class="card-footer text-center" style="background-color: rgb(44, 43, 43)">
<small class="fw-bold">Procheta Bhattacharyya - 3rd Year</small>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="Winners_images/dibya.jpg"
class="card-img-top"
alt="..."
style="border: 5px solid; color:#FAF0E6;"
/>
<div class="card-body" style="background-color: rgb(44, 43, 43); height: 150px;" >
<h5
class="card-title text-center fw-bold display-8"
>
<b style="color:#FFA07A;">3rd Position</b><br>
</h5><hr>
<h6 class="text-center fs-6 text-muted">Blockchain’s Impact on Manufacturing Reality</h6>
</div>
<div class="card-footer text-center" style="background-color: rgb(44, 43, 43)">
<small class="fw-bold">Dibyadyuti Bhadra - 4th Year</small>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="Winners_images/rituraj.jpg"
class="card-img-top"
alt="..."
style="border: 5px solid; color:#FAF0E6;"
/>
<div class="card-body" style="background-color: rgb(44, 43, 43); height: 150px;" >
<h5
class="card-title text-center fw-bold display-8"
>
<b></b>
<b style="color:#87CEFA;">4th Position</b><br>
</h5><hr>
<h6 class="text-center fs-6 text-muted">What is a GPU?</h6>
</div>
<div class="card-footer text-center" style="background-color: rgb(44, 43, 43)">
<small class="fw-bold">Rituraj Paul - 1st Year</small>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="Winners_images/debanka.jpg"
class="card-img-top"
alt="..."
style="border: 5px solid; color:#FAF0E6;"
/>
<div class="card-body" style="background-color: rgb(44, 43, 43); height: 150px;" >
<h5
class="card-title text-center fw-bold display-8"
>
<b style="color:#87CEFA;">4th Position</b><br>
</h5><hr>
<h6 class="text-center fs-6 text-muted">Taking a look back at the infamous Pentium 4</h6>
</div>
<div class="card-footer text-center" style="background-color: rgb(44, 43, 43)">
<small class="fw-bold">Debanka Ghosh - 2nd Year</small>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="Winners_images/ankit.jpg"
class="card-img-top"
alt="..."
style="border: 5px solid; color:#FAF0E6;"
/>
<div class="card-body" style="background-color: rgb(44, 43, 43); height: 150px;" >
<h5
class="card-title text-center fw-bold display-8"
>
<b style="color:#B0C4DE;">5th Position</b><br>
</h5><hr>
<h6 class="text-center fs-6 text-muted">CyberCrime - In A Nutshell</h6>
</div>
<div class="card-footer text-center" style="background-color: rgb(44, 43, 43)">
<small class="fw-bold">Ankit Samaddar - 1st Year</small>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="Winners_images/aritra.jpg"
class="card-img-top"
alt="..."
style="border: 5px solid; color:#FAF0E6;"
/>
<div class="card-body" style="background-color: rgb(44, 43, 43); height: 150px;" >
<h5
class="card-title text-center fw-bold display-8"
>
<b style="color:#B0C4DE;">5th Position</b><br>
</h5><hr>
<h6 class="text-center fs-6 text-muted"> World of APIs</h6>
</div>
<div class="card-footer text-center" style="background-color: rgb(44, 43, 43)">
<small class="fw-bold">Aritra Sarkar - 3rd Year</small>
</div>
</div>
</div>
</div>
<!--End of Winner's Section-->
<hr />
<!-- Team -->
<section id="team" class="pb-5">
<div class="container">
<h5 class="section-title h1">BLOG'O'PEDIA 2.0 TEAM</h5>
<div class="row">
<!-- Team member -->
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="image-flip" ontouchstart="this.classList.toggle('hover');">
<div class="mainflip">
<div class="frontside">
<div class="card">
<div class="card-body text-center">
<p><img class=" img-fluid" src="ORGANISER_IMAGE/damini.jpg" alt="card image"></p>
<h4 class="card-title">Damini Ghosh</h4>
<p class="card-text">ECE, 2nd Year<br>Organiser </p>
<a href="https://www.fiverr.com/share/qb8D02" class="btn btn-primary btn-sm"><i class="fa fa-plus"></i></a>
</div>
</div>
</div>
<div class="backside">
<div class="card">
<div class="card-body text-center mt-4">
<h4 class="card-title">Damini</h4>
<p class="card-text">Second year ECE undergrad. Interested in embedded electronics, plc and scada automation. Management and promotion of Blog-O-Pedia v2.0</p>
<ul class="list-inline">
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank" href="https://www.fiverr.com/share/qb8D02">
<i class="fa fa-facebook"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank" href="https://www.fiverr.com/share/qb8D02">
<i class="fa fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank" href="https://www.fiverr.com/share/qb8D02">
<i class="fa fa-skype"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank" href="https://www.fiverr.com/share/qb8D02">
<i class="fa fa-google"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ./Team member -->
<!-- Team member -->
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="image-flip" ontouchstart="this.classList.toggle('hover');">
<div class="mainflip">
<div class="frontside">
<div class="card">
<div class="card-body text-center">
<p><img class=" img-fluid" src="ORGANISER_IMAGE/aparupa.jpeg" alt="card image"></p>
<h4 class="card-title">Aparupa Chatterjee</h4>
<p class="card-text">ECE, 2nd Year<br>Organiser </p>
<a href="https://www.fiverr.com/share/qb8D02" class="btn btn-primary btn-sm"><i class="fa fa-plus"></i></a>
</div>
</div>
</div>
<div class="backside">
<div class="card">
<div class="card-body text-center mt-4">
<h4 class="card-title">Aparupa</h4>
<p class="card-text">Second year ECE undergrad. Interested in web and full stack development along with python apps. <br>Development and upgradation of tech-eva.live</p>
<ul class="list-inline">
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank" href="https://www.fiverr.com/share/qb8D02">
<i class="fa fa-facebook"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank" href="https://www.fiverr.com/share/qb8D02">
<i class="fa fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank" href="https://www.fiverr.com/share/qb8D02">
<i class="fa fa-skype"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank" href="https://www.fiverr.com/share/qb8D02">
<i class="fa fa-google"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ./Team member -->
<!-- Team member -->
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="image-flip" ontouchstart="this.classList.toggle('hover');">
<div class="mainflip">
<div class="frontside">
<div class="card">
<div class="card-body text-center">
<p><img class=" img-fluid" src="ORGANISER_IMAGE/prantap.jpg" alt="card image"></p>
<h4 class="card-title">Prantap Nag</h4>
<p class="card-text">ECE, 2nd Year<br>Organiser </p>
<a href="https://www.fiverr.com/share/qb8D02" class="btn btn-primary btn-sm"><i class="fa fa-plus"></i></a>
</div>
</div>
</div>
<div class="backside">
<div class="card">
<div class="card-body text-center mt-4">
<h4 class="card-title">Prantap</h4>
<p class="card-text">Second year ECE undergrad. Interested in Cloud development and DevOps. Microsoft AZ-900. Oracle and Alibaba Cloud certified Associate. Management and promotion of Blog-O-Pedia v2.0</p>
<ul class="list-inline">
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank" href="https://www.fiverr.com/share/qb8D02">
<i class="fa fa-facebook"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank" href="https://www.fiverr.com/share/qb8D02">
<i class="fa fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank" href="https://www.fiverr.com/share/qb8D02">
<i class="fa fa-skype"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank" href="https://www.fiverr.com/share/qb8D02">
<i class="fa fa-google"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ./Team member -->
<!-- Team member -->
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="image-flip" ontouchstart="this.classList.toggle('hover');">
<div class="mainflip">
<div class="frontside">
<div class="card">
<div class="card-body text-center">
<p><img class=" img-fluid" src="ORGANISER_IMAGE/rudraneel.jpg" alt="card image"></p>
<h4 class="card-title">Rudraneel Bhattacharya</h4>
<p class="card-text">ECE, 2nd Year<br>Organiser </p>
<a href="https://www.fiverr.com/share/qb8D02" class="btn btn-primary btn-sm"><i class="fa fa-plus"></i></a>
</div>
</div>
</div>
<div class="backside">
<div class="card">
<div class="card-body text-center mt-4">
<h4 class="card-title">Rudraneel</h4>
<p class="card-text">Second year ECE Undergrad. Interested in Linux, open source software and full stack development.<br> Development and upgradation of tech-eva.live</p>
<ul class="list-inline">
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank" href="https://www.fiverr.com/share/qb8D02">
<i class="fa fa-facebook"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank" href="https://www.fiverr.com/share/qb8D02">
<i class="fa fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank" href="https://www.fiverr.com/share/qb8D02">
<i class="fa fa-skype"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank" href="https://www.fiverr.com/share/qb8D02">
<i class="fa fa-google"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ./Team member -->
<!--Footer Section-->
<!-- Remove the container if you want to extend the Footer to full width. -->
<div class="container my-5 bg-dark text-white">
<footer>
<div
class="container p-4"
style="background-color: rgba(46, 41, 41, 0.762)"
>
<div class="row">
<div class="col-lg-6 col-md-12 mb-4">
<h5 class="mb-3" style="letter-spacing: 2px; color: #818963">
<b>Elektronica>></b>
</h5>
<p>
Elektronica is the tech wing of ECE, NSEC. This is the home for
all of your tech cravings and digital needs. Join other
like-minded people and share in the infinite rabbit-hole of
tech-whiz dom!
</p>
</div>
<div class="col-lg-3 col-md-6 mb-4">
<h5 class="mb-3" style="letter-spacing: 2px; color: #818963">
Find Us
</h5>
<ul class="list-unstyled mb-0">
<li class="mb-1">
<a
href="https://www.facebook.com/nsececedpt/"
style="color: #848282"
>Facebook</a
>
</li>
<li class="mb-1">
<a
href="https://www.instagram.com/nsec_ece_department/?igshid=atg6qghxzz0v"
style="color: #848282"
>Instagram</a
>
</li>
<!--<li class="mb-1">
<a href="#!" style="color: #4f4f4f;">nthng</a>
</li>-->
</ul>
</div>
<div class="col-lg-3 col-md-6 mb-4">
<h5 class="mb-1" style="letter-spacing: 2px; color: #818963">
Getting Started
</h5>
<table class="table" style="color: #848282; border-color: #666">
<tbody>
<tr>
<td>Date:</td>
<td>12th - 22th</td>
</tr>
<tr>
<td>Results:</td>
<td>Coming Soon</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div
class="text-center p-3"
style="background-color: rgba(0, 0, 0, 0.2)"
>
© Tech-Eva
<p class="text-white">
Designed And Maintained By WebTeam of ECE, NSEC Tech Wing, With <3
</p>
</div>
<!-- Copyright -->
</footer>
</div>
<!-- End of .container -->
<!--- End of Footer --->
<!-- BS5 JS -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-p34f1UUtsS3wqzfto5wAAmdvj+osOnFyQFpp4Ua3gs/ZVWx6oOypYoCJhGGScy+8"
crossorigin="anonymous"
></script>
</body>
</html>