-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
359 lines (286 loc) · 9.86 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Sports Chapter</title>
<link rel="icon" href="sports.ico" type="image/x-icon">
<style>
/* Reset some default styles */
body, h1, h2, p {
margin: 0;
padding: 0;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: white; /* Dark background color */
color: black; /* Light text color */
line-height: 1.6;
margin-bottom: 60px;
}
header {
background: #3498DB; /* Header background color */
color: #fff;
text-align: center;
padding: 2em 0;
position: relative;
}
header img {
max-width: 120px;
height: 120px;
position: absolute;
left: 1em;
top: 50%;
transform: translateY(-50%);
border-radius: 50%;
box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
}
header h1 {
font-size: 2.5em;
margin-top: 0.5em;
margin-left: 120px;
display: inline-block;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
nav {
background: #2980B9; /* Nav background color */
padding: 1em 0;
text-align: center;
}
nav a {
color: #fff;
text-decoration: none;
padding: 1em;
margin: 0 1em;
font-size: 1.2em;
transition: color 0.3s ease-in-out;
border-radius: 10px;
background: #3498DB; /* Nav link background color */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
nav a:hover {
transform: scale(1.1);
}
main {
background: #ecf0f1;
padding: 2em;
text-align: center;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.joint-secretaries {
display: flex;
justify-content: space-around;
margin-top: 1em;
}
.secretary-details {
text-align: center;
}
.secretary-details img {
width: 50px;
height: 50px;
margin-right: 0.5em;
border-radius: 50%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.contact-person {
margin-bottom: 2em;
}
.contact-person img {
width: 120px;
height: 120px;
margin-right: 1em;
border-radius: 50%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.event {
border: 1px solid #bdc3c7;
background: linear-gradient(45deg, #ecf0f1, #3498db, #2ecc71);
margin-bottom: 2em;
padding: 1.5em;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
display: flex;
flex-direction: column;
align-items: center;
animation: fadeIn 1s ease-in-out;
}
.event h2 {
color: #CB178D;
font-size: 1.8em;
margin-bottom: 0.5em;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.head-details {
display: flex;
justify-content: space-between;
align-items: center;
width: 80%;
margin-bottom: 1em;
}
.head-details img {
width: 100px;
height: 100px;
margin-right: 0.5em;
/*border-radius: 50%;*/
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.event p {
margin: 0.5em 0;
color: #333;
font-size: 1.1em;
line-height: 1.5;
}
footer {
background: #3498DB; /* Footer background color */
color: #fff;
text-align: center;
padding: 1.5em 0;
position: fixed;
bottom: 0;
width: 100%;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
/* Optional: Add animations */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
</style>
</head>
<body>
<header>
<img src="sports.svg" alt="Logo">
<h1>Contact the Sports Team</h1>
</header>
<nav>
<a href="news.html">News</a>
<a href="index.html">Events</a>
<a href="contact.html">Contact</a>
</nav>
<main>
<div class="contact-person">
<h2>Joint Secretaries of Integration'24</h2>
<div class="joint-secretaries">
<div class="secretary-details">
<img src="Puru.jpg" alt="Puru">
<p>Purushottam Saha </p>
<p><a href="mailto:puru8017@gmail.com">puru8017@gmail.com</a></p>
</div>
<div class="secretary-details">
<img src="Manas.jpeg" alt="Manas">
<p>Manas Sharma </p>
<p><a href="mailto:sharmamanas128@gmail.com">sharmamanas128@gmail.com</a></p>
</div>
<div class="secretary-details">
<img src="Ananyo.jpg" alt="Ananyo">
<p>Ananyo Bose </p>
<p><a href="mailto:ananyobose1112@gmail.com">ananyobose1112@gmail.com</a></p>
</div>
<div class="secretary-details">
<img src="Nitya.jpg" alt="Nityadev Allamneni">
<p>Nithyadev Allamneni </p>
<p><a href="mailto:nithyadev0905@gmail.com">nithyadev0905@gmail.com</a></p>
</div>
</div>
</div>
<div class="contact-person">
<h2>Sports Head</h2>
<div class="joint-secretaries">
<div class="secretary-details">
<img src="sarthak.jpeg" alt="Sarthak">
<p>Sarthak Sarkar</p>
<p><a href="mailto:sports@integrationfest.in">sports@integrationfest.in</a></p>
</div>
<div class="secretary-details">
<img src="kundu.jpeg" alt="Kundu">
<p>Soumyadeep Kundu</p>
<p><a href="mailto:sports@integrationfest.in">sports@integrationfest.in</a></p>
</div>
</div>
<div class="event">
<div class="event-details">
<h2>Chess</h2>
<div class="head-details">
<img src="tuhin.png" alt="Tuhin">
<div>
<p><strong>Tuhin Saha (8272984095)</strong> </p>
</div>
</div>
</div>
</div>
<div class="event">
<div class="event-details">
<h2>Football</h2>
<div class="head-details">
<img src="sarthak.jpeg" alt="Sarthak">
<div>
<p><strong>Sarthak Sarkar (9123305710)</strong> </p>
</div>
<img src="suvankar.jpg" alt="Suvankar">
<div>
<p><strong>Suvankar Saha (9330914846)</strong> </p>
</div>
</div>
</div>
</div>
<div class="event">
<div class="event-details">
<h2>Cricket</h2>
<div class="head-details">
<img src="kundu.jpeg" alt="Kundu">
<div>
<p><strong>Soumyadeep Kundu (7003935698)</strong> </p>
</div>
<img src="rajsuvro.jpeg" alt="Rajsuvro">
<div>
<p><strong>Rajsuvro Adhikari (9330560346)</strong> </p>
</div>
</div>
</div>
</div>
<div class="event">
<div class="event-details">
<h2>Table Tennis</h2>
<div class="head-details">
<img src="AKMn.jpeg" alt="Alaap">
<div>
<p><strong>Alaap Kr. Mukhopdhyay (7003205534)</strong> </p>
</div>
<img src="ritwick.jpeg" alt="Rajsuvro">
<div>
<p><strong>Ritwick Pal (9330129244)</strong> </p>
</div>
</div>
</div>
</div>
<div class="event">
<div class="event-details">
<h2>Model IPL Auction</h2>
<div class="head-details">
<img src="auctionhead.jpeg" alt="ARC">
<div>
<p><strong>Akashdeep Ray Chaudhuri (9432307543)</strong> </p>
</div>
<img src="SM.JPG" alt="ARC">
<div>
<p><strong>Sovik Mahato (9883024554)</strong> </p>
</div>
<img src="V.jpg" alt="ARC">
<div>
<p><strong> V Gaurav (6263253261)</strong> </p>
</div>
</div>
</div>
</div>
</main>
<footer>
© 2024 Sports Chapter, Integration '24. All rights reserved<br>
<span style="font-size: 0.8em;">Designed by Srijan Chatterjee</span>
</footer>
</body>
</html>