-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
700 lines (612 loc) · 29.5 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
<!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>Chess Club IITK</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css"/>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.1/css/all.min.css'>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Montserrat&display=swap"rel="stylesheet'>
<link rel="stylesheet" href="style.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<div class="background-image">
<header class="header">
<a href="#" class ="logo">chessiitk.</a>
<!-- <div id="menu-toggle" class="menu-icon"></div> -->
<i class="ri-menu-3-line menu-icon" id="menu-toggle"></i>
<nav class="navbar">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#initiative">Initiatives</a>
<a href="#events">Events</a>
<a href="#CMPL2023">CMPL2023</a>
<a href="#gallery">Gallery</a>
<a href="#team">Team</a>
<!-- <a href="#contact">Contact</a> -->
</nav>
<script inline>
// Get references to the menu button and the navbar
const menuButton = document.getElementById("menu-toggle");
const navbar = document.querySelector(".navbar");
// Add a click event listener to the menu button
menuButton.addEventListener("click", () => {
// Toggle the "active" class on the navbar
navbar.classList.toggle("active");
// Add a transition effect
navbar.style.transition = "transform 0.3s ease";
});
</script>
<!-- <div class="main" id="menu-icon">
<i class="ri-menu-3-fill"></i>
</div> -->
</header>
<section class="home" id="home">
<div class="home-content">
<h1>IITK <span>CHESS CLUB</span></h1>
<div class="text-animate">
<h3>chessiitk</h3>
</div>
<p>"Checkmate Your Limits, Unleash Your Potential!"</p>
</div>
<div class="home-sci">
<a href="https://www.instagram.com/chessiitk/" target="_blank"><i class='bx bxl-instagram' ></i></a>
<a href="https://www.facebook.com/chessclubiitk" target="_blank"><i class='bx bxl-facebook' ></i></a>
<a href="https://twitter.com/chessiitk" target="_blank"><i class='bx bxl-twitter' ></i></a>
<a href="https://www.youtube.com/@chessiitk/featured" target="_blank"><i class='bx bxl-youtube'></i></a>
<a href="https://discord.gg/h7gZfmbuwU" target="_blank"><i class='bx bxl-discord-alt'></i></a>
<!-- <a href="#"><i class='bx bxl-linkedin' ></i></a> -->
</div>
<div class="home-imgHover"></div>
</section>
</div>
<section class="about" id="about">
<h2 class="heading">About <span>Us</span></h2>
<div class="about-img">
<img src="Untitled design (7).svg" alt="">
<span class="circle-spin"></span>
</div>
<div class="about-content">
<h3>CHESS CLUB IIT KANPUR</h3>
<p>We at Chess Club IIT Kanpur conduct various tournaments and sessions for the people at our campus and other colleges. Our major initiatives include Chess in Slums, where we visit remote areas and introduce the beautiful game to underprivileged children, and a FIDE-styled IITK Chess Championship Cycle comprising of events like Grand Swiss, Grand Prix, a Candidates Tournament and an IITK Chess Championship Match. Also, we are one of the only few institutes to incorporate such a comprehensive chess structure for the campus community.</p>
</div>
</section>
<section class="initiative" id="initiative">
<h2 class="heading2">Initiatives</h2>
<div class="cardList">
<button class="cardList__btn btn btn--left">
<div class="icon">
<svg>
<use xlink:href="#arrow-left"></use>
</svg>
</div>
</button>
<div class="cards__wrapper">
<div class="card current--card">
<div class="card__image">
<img src="Untitled design (30).svg" alt="" />
</div>
</div>
<div class="card next--card">
<div class="card__image">
<img src="Untitled design (31).svg" alt="" />
</div>
</div>
<div class="card previous--card">
<div class="card__image">
<img src="Untitled design (32).svg" alt="" />
</div>
</div>
</div>
<button class="cardList__btn btn btn--right">
<div class="icon">
<svg>
<use xlink:href="#arrow-right"></use>
</svg>
</div>
</button>
</div>
<div class="infoList">
<div class="info__wrapper">
<div class="info current--info">
<h1 class="text name">CHESS IN SLUMS</h1>
<h4 class="text location">Expanding chess community</h4>
<p class="text description">#ChessforChange</p>
</div>
<div class="info next--info">
<h1 class="text name">CHAMPIONSHIP CYCLE</h1>
<h4 class="text location">Cycle specific for IITK</h4>
<p class="text description">IITK Grand Swiss(incoming)</p>
</div>
<div class="info previous--info">
<h1 class="text name">QUEEN'S GAMBIT</h1>
<h4 class="text location">ONLY FOR GIRLS</h4>
<p class="text description">Let your dreams come true</p>
</div>
</div>
</div>
<div class="app__bg">
<div class="app__bg__image current--image">
<img src="Untitled design (30).svg" alt="" />
</div>
<div class="app__bg__image next--image">
<img src="Untitled design (31).svg" alt="" />
</div>
<div class="app__bg__image previous--image">
<img src="Untitled design (32).svg" alt="" />
</div>
</div>
</div>
<div class="loading__wrapper">
<div class="loader--text">Please Wait...</div>
<div class="loader">
<span></span>
</div>
</div>
<svg class="icons" style="display: none;">
<symbol id="arrow-left" xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'>
<polyline points='328 112 184 256 328 400'
style='fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:48px' />
</symbol>
<symbol id="arrow-right" xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'>
<polyline points='184 112 328 256 184 400'
style='fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:48px' />
</symbol>
</svg>
<script src='https://unpkg.com/imagesloaded@4/imagesloaded.pkgd.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/gsap/3.3.3/gsap.min.js'></script><script src="./ghi.js"></script>
</section>
<section class="events" id="events">
<h2 class="heading1">Events</h2>
<div class="container">
<div class="item-container">
<div class="img-container">
<img src="Untitled design (27).svg" alt="Event image">
</div>
<div class="body-container">
<div class="overlay">
</div>
<div class="event-info">
<p class="title1">IITK CHESS LEAGUE</p>
<div class="separator"></div>
<p class="info">LEAGUE OF LEGENDS</p>
<p class="price">UPCOMING</p>
<div class="additional-info">
<p class="info">
<i class="fas fa-map-marker-alt"></i>
June 30th - July 2nd
</p>
<!-- <p class="info">
<i class="far fa-calendar-alt"></i>
Not decided yet
</p> -->
<p class="info-description">
The Second Edition of the IITK Chess League: The League of Legends was an outstanding event that marked the 15th anniversary of the Chess Club. With a vibrant mix of current students and talented alumni teams, the League offered a platform for chess enthusiasts to exhibit their skills and compete at the highest level. With more than 200 registrations, the league witnessed intense matches with varying time controls. The ladder knockout format added excitement and unpredictability to the games.
</p>
</div>
</div>
<button class="action"> REGISTER NOW!!</button>
</div>
</div>
<!-- <div class="item-container">
<div class="img-container">
<img src="Untitled design (22).svg" alt="Event image">
</div>
<div class="body-container">
<div class="overlay">
</div>
<div class="event-info">
<p class="title1">IITK CHESS CHAMPIONSHIP CYCLE</p>
<div class="separator"></div>
<p class="info">CHESS CYCLE SPECIFIC FOR IITK</p>
<p class="price">UPCOMING</p>
<div class="additional-info">
<p class="info">
<i class="fas fa-map-marker-alt"></i>
From September
</p>
<p class="info-description">
The IITK Championship Cycle is a series of events similar to the FIDE Championship cycle specifically for the IITK students. The series of events leads to the Championship match. The winner of the match is crowned the IITK Chess Champion.
The events in the cycle are : <br>
IITK Grand Swiss<br>
IITK Chess Cup<br>
IITK Grand Prix<br>
IITK Candidates<br>
Championship Match
</p>
</div>
</div>
<button class="action"> REGISTER NOW!!</button>
</div> -->
<!-- </div> -->
<div class="item-container">
<div class="img-container">
<img src="Untitled design (29).svg" alt="Event image">
</div>
<div class="body-container">
<div class="overlay">
</div>
<div class="event-info">
<p class="title1">CHESS MASTERS PREMIER LEAGUE</p>
<div class="separator"></div>
<p class="info">COLLEGIATE CHESS LEAGUE</p>
<p class="price">UPCOMING</p>
<div class="additional-info">
<p class="info">
<i class="fas fa-map-marker-alt"></i>
Not decided yet
</p>
<!-- <p class="info">
<i class="far fa-calendar-alt"></i>
Not decided yet
</p> -->
<p class="info-description">
Chess Masters Premier League 2023, also known as CMPL 2023, was a highly anticipated event organized by the IITK Chess Club. The tournament involved a staggering 6,500+ players and 3,200+ games. With an impressive 2,250,000 moves made, CMPL 2023 became the largest college-level chess tournament, attracting participants from prestigious global institutions. The event boasted an esteemed lineup of guest speakers such as GM Gukesh D, GM Arjun Erigaisi, IM Sagar Shah, Amruta Mokal, Mr. Dodgy, IM Niklesh Jain, GM Srinath Narayan and many more.
</p>
</div>
</div>
<button class="action"> REGISTER NOW!!</button>
</div>
</div>
<!-- <div class="item-container">
<div class="img-container">
<img src="Untitled design (27).svg" alt="Event image">
</div>
<div class="body-container">
<div class="overlay">
</div>
<div class="event-info">
<p class="title1">CHESS IN SLUMS</p>
<div class="separator"></div>
<p class="info">LEAGUE OF LEGENDS</p>
<p class="price">UPCOMING</p>
<div class="additional-info">
<p class="info">
<i class="fas fa-map-marker-alt"></i>
June 30th - July 2nd
</p>
<p class="info-description">
In a heartwarming collaboration, the IIT Kanpur Chess Club and Prayas have come together to introduce chess as a means of education and empowerment for marginalized children residing near or within the IIT Kanpur campus. Prayas, dedicated to "education for all," has found an ally in the IITK Chess Club, which seeks to popularize and promote the game not only among regular players but also among beginners, with a vision of making chess accessible to everyone.
</p>
</div>
</div>
<button class="action"> REGISTER NOW!!</button>
</div>
</div> -->
<!-- <div class="item-container">
<div class="img-container">
<img src="Untitled design (27).svg" alt="Event image">
</div>
<div class="body-container">
<div class="overlay">
</div>
<div class="event-info">
<p class="title1">QUEEN'S GAMBIT</p>
<div class="separator"></div>
<p class="info">SPECIFIC FOR GIRLS</p>
<p class="price">UPCOMING</p>
<div class="additional-info">
<p class="info">
<i class="fas fa-map-marker-alt"></i>
June 30th - July 2nd
</p>
<p class="info-description">
The Queen's Gambit Chess tournament was an exciting event organized by the IIT Kanpur Chess Club exclusively for girls. This tournament showcased the incredible talent and strategic prowess of the participants.
With a time control of 10 minutes plus 2 seconds increment, the competition was intense from the very beginning. A total of 30 enthusiastic participants participated in the event.
Just like the immensely popular web series "The Queen's Gambit," this exclusive chess tournament for IIT Kanpur's female students was a resounding success.
</p>
</div>
</div>
<button class="action"> REGISTER NOW!!</button>
</div>
</div> -->
<div class="item-container">
<div class="img-container">
<img src="Untitled design (24).png" alt="Event image">
</div>
<div class="body-container">
<div class="overlay">
</div>
<div class="event-info">
<p class="title1">SPEED CHESS CHAMPIONSHIP</p>
<div class="separator"></div>
<p class="info">BLITZ + BULLET</p>
<p class="price">UPCOMING</p>
<div class="additional-info">
<p class="info">
<i class="fas fa-map-marker-alt"></i>
June 30th - July 2nd
</p>
<!-- <p class="info">
<i class="far fa-calendar-alt"></i>
Not decided yet
</p> -->
<p class="info-description">
This event of speed chess championship catered to chess enthusiasts who thrive in shorter chess formats. The championship witnessed a remarkable turnout of players.The participants engaged in an intense hour of 1+1 chess, followed by another hour of 3+1 chess. The excitement escalated in the knockout rounds with 30-minute matches of 1+1 and 3+1 chess. After an intense grueling battle in the finals between Saankulp and Rohan, Rohan got the best of his opponent and was crowned the Speed Chess Champion.
</p>
</div>
</div>
<button class="action"> REGISTER NOW!!</button>
</div>
</div>
</div>
<!-- <div class="slider-wrapper">
<div class="slider">
<img id="slide-1" src="https://cdn.pixabay.com/photo/2010/12/13/10/09/abstract-2384_960_720.jpg" alt="">
<img id="slide-2" src="https://cdn.pixabay.com/photo/2018/01/09/06/43/sea-3070982_960_720.jpg" alt="">
<img id="slide-3" src="https://cdn.pixabay.com/photo/2013/10/02/23/03/dog-190056_960_720.jpg" alt="">
</div>
<div class="slider-nav">
<a href="slide-1"></a>
<a href="slide-2"></a>
<a href="slide-3"></a>
</div>
</div> -->
</section>
<section class="CMPL2023" id="CMPL2023">
<h2 class="heading1">CMPL 2023</h2>
<!-- Swiper -->
<div class="swiper mySwiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img src="11.png" />
</div>
<div class="swiper-slide">
<img src="12.png" />
</div>
<div class="swiper-slide">
<img src="28.png" />
</div>
<div class="swiper-slide">
<img src="13.png" />
</div>
<div class="swiper-slide">
<img src="14.png" />
</div>
<div class="swiper-slide">
<img src="15.png" />
</div>
<div class="swiper-slide">
<img src="16.png" />
</div>
<div class="swiper-slide">
<img src="17.png" />
</div>
<div class="swiper-slide">
<img src="18.png" />
</div>
<div class="swiper-slide">
<img src="19.png" />
</div>
<div class="swiper-slide">
<img src="20.png" />
</div>
<div class="swiper-slide">
<img src="21.png" />
</div>
<div class="swiper-slide">
<img src="22.png" />
</div>
<div class="swiper-slide">
<img src="23.png" />
</div>
<div class="swiper-slide">
<img src="24.png" />
</div>
<div class="swiper-slide">
<img src="25.png" />
</div>
<div class="swiper-slide">
<img src="26.png" />
</div>
<div class="swiper-slide">
<img src="27.png" />
</div>
</div>
<div class="swiper-pagination"></div>
</div>
<!-- Swiper JS -->
<script src="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.js"></script>
<!-- Initialize Swiper -->
<script>
var swiper = new Swiper(".mySwiper", {
effect: "coverflow",
grabCursor: true,
centeredSlides: true,
slidesPerView: "auto",
coverflowEffect: {
rotate: 50,
stretch: 0,
depth: 100,
modifier: 1,
slideShadows: true,
},
pagination: {
el: ".swiper-pagination",
},
});
</script>
</section>
<section class="gallery" id="gallery">
<h2 class="heading1">Gallery</h2>
<!-- Swiper -->
<div class="swiper mySwiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img src="Untitled design (19).png" />
</div>
<div class="swiper-slide">
<img src="2 3.png" />
</div>
<div class="swiper-slide">
<img src="3 3.png" />
</div>
<div class="swiper-slide">
<img src="4.png" />
</div>
<div class="swiper-slide">
<img src="5.png" />
</div>
<div class="swiper-slide">
<img src="6.png" />
</div>
<div class="swiper-slide">
<img src="7.png" />
</div>
<div class="swiper-slide">
<img src="8.png" />
</div>
<div class="swiper-slide">
<img src="9.png" />
</div>
<div class="swiper-slide">
<img src="SCHOOL VISIT.png" />
</div>
</div>
<div class="swiper-pagination"></div>
</div>
<!-- Swiper JS -->
<script src="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.js"></script>
<!-- Initialize Swiper -->
<script>
var swiper = new Swiper(".mySwiper", {
effect: "coverflow",
grabCursor: true,
centeredSlides: true,
slidesPerView: "auto",
coverflowEffect: {
rotate: 50,
stretch: 0,
depth: 100,
modifier: 1,
slideShadows: true,
},
pagination: {
el: ".swiper-pagination",
},
});
</script>
</section>
<section class="team" id="team">
<h2 class="Team">Team</h2>
<div class="responsive-container-block outer-container">
<div class="responsive-container-block inner-container">
<div class="responsive-container-block">
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="Untitled design (16).svg">
</div>
<p class="text-blk name">
Ayush Yadav
</p>
<p class="text-blk position">
Coordinator
</p>
<p class="text-blk position1">
Chess Club IITK
</p>
<div class="social-media-links">
<a href="https://www.instagram.com/ayussssshhhhhhh/" target="_blank"><i class='bx bxl-instagram' style='color:#f2e4bb' ></i>
</a>
<a href="https://www.facebook.com/profile.php?id=100075259240546" target="_blank"><i class='bx bxl-facebook' style='color:#f2e4bb' ></i>
</a>
<a href="https://twitter.com/Ayush10413" target="_blank"><i class='bx bxl-twitter' style='color:#f2e4bb' ></i>
</a>
<a href="mailto:[email protected]" target="_blank"><i class='bx bxl-google' style='color:#f2e4bb' ></i>
</a>
</div>
</div>
</div>
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="Untitled design (17).svg">
</div>
<p class="text-blk name">
Abhijeet Verma
</p>
<p class="text-blk position">
Coordinator
</p>
<p class="text-blk position1">
Chess Club IITK
</p>
<div class="social-media-links">
<a href="https://www.instagram.com/abhijeet.but.poggers/" target="_blank"><i class='bx bxl-instagram' style='color:#f2e4bb' ></i>
</a>
<a href="https://www.facebook.com/profile.php?id=100075153254592" target="_blank"><i class='bx bxl-facebook' style='color:#f2e4bb' ></i>
</a>
<a href="https://twitter.com/I_einzelgangar" target="_blank"><i class='bx bxl-twitter' style='color:#f2e4bb' ></i>
</a>
<a href="mailto:[email protected]" target="_blank"><i class='bx bxl-google' style='color:#f2e4bb' ></i>
</a>
</div>
</div>
</div>
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="Untitled design (18).svg">
</div>
<p class="text-blk name">
Navankur Shrotriya
</p>
<p class="text-blk position">
Coordinator
</p>
<p class="text-blk position1">
Chess Club IITK
</p>
<div class="social-media-links">
<a href="https://www.instagram.com/navankurshrotriya/" target="_blank"><i class='bx bxl-instagram' style='color:#f2e4bb' ></i>
</a>
<a href="https://www.facebook.com/profile.php?id=100073529080320" target="_blank"><i class='bx bxl-facebook' style='color:#f2e4bb' ></i>
</a>
<a href="https://twitter.com/NavankurSh83754" target="_blank"><i class='bx bxl-twitter' style='color:#f2e4bb' ></i>
</a>
<a href="mailto:[email protected]" target="_blank"><i class='bx bxl-google' style='color:#f2e4bb' ></i>
</a>
</div>
</div>
</div>
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="Untitled design (19).svg">
</div>
<p class="text-blk name">
Tejas Goyal
</p>
<p class="text-blk position">
Coordinator
</p>
<p class="text-blk position1">
Chess Club IITK
</p>
<div class="social-media-links">
<a href="https://www.instagram.com/tejasgoy4l/" target="_blank"><i class='bx bxl-instagram' style='color:#f2e4bb' ></i>
</a>
<a href="https://www.facebook.com/profile.php?id=100073746022615" target="_blank"><i class='bx bxl-facebook' style='color:#f2e4bb' ></i>
</a>
<a href="https://twitter.com/TJyAsal" target="_blank"><i class='bx bxl-twitter' style='color:#f2e4bb' ></i>
</a>
<a href="mailto:[email protected]" target="_blank"><i class='bx bxl-google' style='color:#f2e4bb' ></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section class="contact" id="contact">
</section> -->
<script src="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>