-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
298 lines (259 loc) · 10 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - INFI SPORTS</title>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;600&family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<!-- Swiper CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
text-align: center;
background-color: #f4f4f4;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px;
background: linear-gradient(to right,#620475, #790092, #c62aad); /* Adjust colors */
color: white;
}
.logo {
font-family: 'Bebas Neue', sans-serif;
font-size: 28px;
font-weight: bold;
letter-spacing: 2px;
}
.menu {
font-size: 24px;
cursor: pointer;
}
.nav-menu {
display: none;
position: absolute;
top: 60px;
right: 10px;
background: white;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 5px;
width: 150px;
}
.nav-menu ul {
list-style: none;
padding: 10px 0;
}
.nav-menu li {
padding: 10px;
text-align: center;
}
.nav-menu a {
text-decoration: none;
color: #6a0dad;
font-weight: bold;
display: block;
}
.nav-menu a:hover {
background: #eee;
}
.content {
padding: 50px 20px;
}
.content h1 {
font-size: 36px;
color: #6a0dad;
margin-bottom: 20px;
}
.content p, .content ul {
font-size: 20px;
color: #333;
max-width: 900px;
margin: 20px auto;
line-height: 1.8;
text-align: left; /* or center */
word-spacing: -1px;
}
.content p {
justify-content: center;
}
.swiper-container {
width: 80%;
max-width: 600px;
height: 350px;
margin: auto;
overflow: hidden;
border-radius: 10px;
}
.swiper-slide img {
width: 100%;
height: 100%;
object-fit: contain;
border-radius: 10px;
}
.contact-button {
margin-top: 30px;
background: #6a0dad;
color: white;
padding: 10px 20px;
font-size: 18px;
border: none;
cursor: pointer;
border-radius: 20px;
}
.contact-links {
display: none;
margin-top: 20px;
padding: 20px;
background: #666;
color: white;
text-align: center;
border-radius: 10px;
width: 250px;
margin-left: auto;
margin-right: auto;
}
.social-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
justify-items: center;
}
.contact-links a {
display: flex;
align-items: center;
justify-content: center;
color: white;
text-decoration: none;
font-size: 18px;
width: 100%;
}
.contact-links a:hover {
text-decoration: underline;
}
.contact-links a img {
width: 40px;
height: 40px;
margin-right: 10px;
}
footer {
margin-top: 50px;
padding: 20px;
background: linear-gradient(to right,#620475, #790092, #c62aad); /* Adjust colors */
color: white;
font-size: 18px;
} header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
}
.logo {
display: flex;
align-items: center;
gap: 8px; /* Space between logo and text */
}
.logo img {
width: 40px;
height: 40px;
}
.menu {
font-size: 24px;
cursor: pointer;
}
</style>
</head>
<body>
<header>
<div class="logo">
<img src="logo-removebg-preview.png" alt="Logo">
<span>INFI SPORTS</span>
</div>
<div class="menu" onclick="toggleMenu()">☰</div>
</header>
<div class="nav-menu" id="navMenu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="event.html">Events</a></li>
</ul>
</div>
<main class="content">
<h1 style=" font-family: 'Poppins', sans-serif;">About Us</h1>
<p style=" font-family: 'Poppins', sans-serif;">We are INFI SPORTS, dedicated to bringing together sports enthusiasts from all backgrounds...</p>
<div class="swiper-container" style="margin-bottom: 30px;">
<div class="swiper-wrapper">
<div class="swiper-slide"><img src="7.png" alt="Team Image 1"></div>
<div class="swiper-slide"><img src="1.png" alt="Team Image 2"></div>
<div class="swiper-slide"><img src="2.png" alt="Team Image 3"></div>
<div class="swiper-slide"><img src="3.png" alt="Team Image 4"></div>
<div class="swiper-slide"><img src="4.png" alt="Team Image 5"></div>
<div class="swiper-slide"><img src="5.png" alt="Team Image 6"></div>
<div class="swiper-slide"><img src="6.png" alt="Team Image 7"></div>
</div>
</div>
<h2 style="font-family: 'Poppins', sans-serif; font-size: 20px;">
Founded by College Students, Built for Competitors
</h2>
<p style=" font-family: 'Poppins', sans-serif;">We organize and stream well-structured and action-packed sports tournaments, starting off in Chennai’s southern province.</p>
<h3 style="font-family: 'Poppins', sans-serif; margin-left: -800px;">
What We Offer:
</h3>
<ul>
<li style=" font-family: 'Poppins', sans-serif;">Competitive Tournaments – Organized and fair play for all</li>
<li style=" font-family: 'Poppins', sans-serif;">Live Streaming – Quality video content shot for all gameplay</li>
<li style=" font-family: 'Poppins', sans-serif;">Family-Friendly Environment – With all essential amenities</li>
<li style=" font-family: 'Poppins', sans-serif;">Entry for all – Guaranteed quality game time for all participants</li>
</ul>
<h3 style=" font-family: 'Poppins', sans-serif; margin-left: -760px ;">What We Organize:</h3>
<ul>
<li style=" font-family: 'Poppins', sans-serif;">3x3 Street Basketball Tournaments</li>
<li style=" font-family: 'Poppins', sans-serif;">5x5 & 7x7 Turf Football Leagues</li>
<li style=" font-family: 'Poppins', sans-serif;">Single & Doubles Corporate Badminton Leagues</li>
<li style=" font-family: 'Poppins', sans-serif;">Men’s, Women’s & Mixed Doubles Championships</li>
<li style=" font-family: 'Poppins', sans-serif;">Indoor & Outdoor Volleyball Leagues</li>
<li style=" font-family: 'Poppins', sans-serif;">Singles & Doubles Open Table Tennis Championships</li>
</ul>
<p style=" font-family: 'Poppins', sans-serif;">We plan to launch more domestic leagues on INFI SPORTS once market research confirms demand for each sport.</p>
<p style=" font-family: 'Poppins', sans-serif;">Our first-ever tournament is not just about winning a trophy; it’s about winning for a cause! Funds raised will be donated to improve IT infrastructure in Tamil Nadu's government schools.</p>
<p style=" font-family: 'Poppins', sans-serif;">Every participant is a winner, as you are a part of something bigger than just a game!</p>
</main>
<button class="contact-button" onclick="toggleContact()">CONTACT US!</button>
<div class="contact-links" id="contactLinks">
<div class="social-grid">
<a href="https://www.instagram.com/infi__sports?igsh=Y2JiNXJrank1bGYz"><img src="pngtree-instagram-icon-png-insta.png" alt="Instagram"></a>
<a href="https://whatsapp.com/channel/0029Vb4f1HDD8SE7J0ElSM3O"><img src="whatsapp1.webp" alt="WhatsApp"></a>
<a href="#"><img src="gmail.webp" alt="Gmail"></a>
<a href="https://www.linkedin.com/company/infi-sports/about/?viewAsMember=true"><img src="linkedin1.webp" alt="Linkedin"></a>
</div>
</div>
<footer>
<p>© 2025 INFI SPORTS. All Rights Reserved.</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<script>
var swiper = new Swiper('.swiper-container', {
loop: true,
slidesPerView: 1,
autoplay: {
delay: 5000, // Slide stays for 5 seconds
disableOnInteraction: false,
},
speed: 1500 // Transition duration is 1.5 seconds
});
function toggleMenu() {
var menu = document.getElementById("navMenu");
menu.style.display = menu.style.display === "block" ? "none" : "block";
}
function toggleContact() {
var contact = document.getElementById("contactLinks");
contact.style.display = contact.style.display === "block" ? "none" : "block";
}
</script>
</body>
</html>