-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
445 lines (431 loc) · 15.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Utsavmania</title>
<link rel="icon" type="image/x-icon" href="CSS/Pic/logo.png" />
<link rel="stylesheet" href="./CSS/style.css" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9"
crossorigin="anonymous"
/>
</head>
<body>
<header class="header1">
<h1><b>Welcome to UtsavMania</b></h1>
<p>Your Ultimate Celebration Experience</p>
</header>
<nav class="nav1">
<div id="nav2">
<a href="index.html">Home</a>
<a href="#eventlist">Events</a>
<a href="admin/registration.html">Event Registration</a>
<a href="pages/contanct_detalis.html">Contact US</a>
<a href="pages/login.html">SignUp</a>
<a href="pages/login.html">Admin login</a>
</div>
<div class="hamburgerMenu">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
<div id="search-bar">
<div id="search-input-container">
<input type="text" id="search-input" placeholder="Search event..." />
<ul id="suggestions-list"></ul>
</div>
<button id="search-button">Search</button>
</div>
</nav>
<div id="imagem">
<section>
<div id="carouselExampleCaptions" class="carousel slide">
<div class="carousel-indicators">
<button
type="button"
data-bs-target="#carouselExampleCaptions"
data-bs-slide-to="0"
class="active"
aria-current="true"
aria-label="Slide 1"
></button>
<button
type="button"
data-bs-target="#carouselExampleCaptions"
data-bs-slide-to="1"
aria-label="Slide 2"
></button>
<button
type="button"
data-bs-target="#carouselExampleCaptions"
data-bs-slide-to="2"
aria-label="Slide 3"
></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img
class="imagem"
src="./CSS/Pic/mobileevent.jpg"
class="d-block w-100"
alt="..."
/>
<div class="carousel-caption d-none d-md-block">
<h5>First slide label</h5>
<p>
Some representative placeholder content for the first slide.
</p>
</div>
</div>
<div class="carousel-item">
<img
class="imagem"
src="./CSS/Pic/mobileevent1.jpg"
class="d-block w-100"
alt="..."
/>
<div class="carousel-caption d-none d-md-block">
<h5>Second slide label</h5>
<p>
Some representative placeholder content for the second slide.
</p>
</div>
</div>
<div class="carousel-item">
<img
class="imagem"
src="./CSS/Pic/mobileevent2.webp"
class="d-block w-100"
alt="..."
/>
<div class="carousel-caption d-none d-md-block">
<h5>Third slide label</h5>
<p>
Some representative placeholder content for the third slide.
</p>
</div>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carouselExampleCaptions"
data-bs-slide="prev"
>
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#carouselExampleCaptions"
data-bs-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</section>
</div>
<!-- Description name detail -->
<!-- Description name detail -->
<div id="eventdes">
<div class="eventdes-content">
<h1>UTSAVMANIA</h1>
<p>
<b>
<span style="display: block; text-align: center">
Celebrate Independence Day with UtsavMania! <br />
</span>
</b>
Join us for an extraordinary journey as we mark the eve of India's
Independence Day with a plethora of exhilarating events that capture
the essence of freedom, creativity, and unity. UtsavMania is your
gateway to an unforgettable celebration, where talents converge,
passions ignite, and memories are made.
</p>
</div>
</div>
<!-- Another Section -->
<div id="eventlist">
<div id="eventBord">
<a href="pages/photography.html">
<div class="eventbox" id="photography">
<h4 id="text">Photography</h4>
</div>
</a>
<a href="pages/dance.html">
<div class="eventbox" id="Dancing">
<h4 id="text">Dancing</h4>
</div>
</a>
<a href="pages/singing.html">
<div class="eventbox" id="Singing">
<h4 id="text">Singing</h4>
</div>
</a>
<a href="pages/hackthon.html">
<div class="eventbox" id="Hackathon">
<h4 id="text">Hackathon</h4>
</div>
</a>
<a href="pages/chess.html">
<div class="eventbox" id="Chess">
<h4 id="text">Chess</h4>
</div>
</a>
<a href="pages/quiz.html">
<div class="eventbox" id="QuizCompetition">
<h4 id="text">Quiz</h4>
</div>
</a>
<a href="pages/standup.html">
<div class="eventbox" id="Standup">
<h4 id="text">Standup</h4>
</div>
</a>
<a href="pages/sudoku.html">
<div class="eventbox" id="Sudoku">
<h4 id="text">Sudoku</h4>
</div>
</a>
</div>
<!-- notice-board -->
<div class="notice">
<h3 style="text-align: center">Notice:-</h3>
<div class="notice-board">
<div class="notice-item">
<a href="#">Notice 1: Important Event</a>
<span class="notice-date">August 22, 2023</span>
</div>
<div class="notice-item">
<a href="#">Notice 2: Examination Schedule</a>
<span class="notice-date">August 30, 2023</span>
</div>
<div class="notice-item">
<a href="#">Notice 3: Important Event</a>
<span class="notice-date">August 22, 2023</span>
</div>
<div class="notice-item">
<a href="#">Notice 4: Important Event</a>
<span class="notice-date">August 22, 2023</span>
</div>
<div class="notice-item">
<a href="#">Notice 5: Important Event</a>
<span class="notice-date">August 22, 2023</span>
</div>
<div class="notice-item">
<a href="#">Notice 6: Important Event</a>
<span class="notice-date">August 22, 2023</span>
</div>
<div class="notice-item">
<a href="#">Notice 7: Important Event</a>
<span class="notice-date">August 22, 2023</span>
</div>
<div class="notice-item">
<a href="#">Notice 8: Important Event</a>
<span class="notice-date">August 22, 2023</span>
</div>
<div class="notice-item">
<a href="#">Notice 9: Important Event</a>
<span class="notice-date">August 22, 2023</span>
</div>
<div class="notice-item">
<a href="#">Notice 10: Important Event</a>
<span class="notice-date">August 22, 2023</span>
</div>
<!-- Add more notice items here -->
</div>
</div>
</div>
<!-- testinomial -->
<section class="testimonials">
<h2>Event Winners' Testimonials</h2>
<div class="testimonial-container">
<div class="testimonial">
<div class="testimonial-photo">
<img src="CSS/Pic/profile/Abhishek Anandpms.jpg" alt="John Doe" />
</div>
<div class="testimonial-text">
<p>
"I'm thrilled to have won first place in the coding competition.
It was a challenging experience, and I'm grateful for the
opportunity."
</p>
<span class="testimonial-author">Abhishek Anand</span>
</div>
</div>
<div class="testimonial">
<div class="testimonial-photo">
<img src="CSS/Pic/profile/vikash.png" alt="Jane Smith" />
</div>
<div class="testimonial-text">
<p>
"Winning the art contest was a dream come true. Thank you to the
organizers for recognizing my work."
</p>
<span class="testimonial-author">Raushan Kumar</span>
</div>
</div>
<div class="testimonial">
<div class="testimonial-photo">
<img src="CSS/Pic/profile/1600154260690.jpeg" alt="Jane Smith" />
</div>
<div class="testimonial-text">
<p>
"Winning the art contest was a dream come true. Thank you to the
organizers for recognizing my work."
</p>
<span class="testimonial-author">Gautam Thakur</span>
</div>
</div>
<div class="testimonial">
<div class="testimonial-photo">
<img src="CSS/Pic/profile/1624383495431.jpeg" alt="Jane Smith" />
</div>
<div class="testimonial-text">
<p>
"Winning the art contest was a dream come true. Thank you to the
organizers for recognizing my work."
</p>
<span class="testimonial-author">Abhishek choudhary</span>
</div>
</div>
<div class="testimonial">
<div class="testimonial-photo">
<img
src="CSS/Pic/profile/Screenshot 2023-06-21 164235.png"
alt="Jane Smith"
/>
</div>
<div class="testimonial-text">
<p>
"Winning the art contest was a dream come true. Thank you to the
organizers for recognizing my work."
</p>
<span class="testimonial-author">Abhishek Anand</span>
</div>
</div>
<div class="testimonial">
<div class="testimonial-photo">
<img src="CSS/Pic/profile/Abhishek Anandpms.jpg" alt="Jane Smith" />
</div>
<div class="testimonial-text">
<p>
"Winning the art contest was a dream come true. Thank you to the
organizers for recognizing my work."
</p>
<span class="testimonial-author">Roushan Kumar</span>
</div>
</div>
<!-- Add more testimonials here -->
</div>
</section>
<!-- Teacher profiles -->
<section class="profiles">
<div class="profile">
<div class="profile-photo"></div>
<div class="profile-details">
<h3>College Principal</h3>
<p>Name:prof. Manoj Kumar</p>
<p>Email:[email protected]</p>
<p>Phone: 07013345079</p>
</div>
</div>
<div class="profile">
<div class="profile-photo"></div>
<div class="profile-details">
<h3>Head of Department (HOD)</h3>
<p>Name:RAJU SIR</p>
<p>Email:[email protected]</p>
<p>Phone: 8010868955</p>
</div>
</div>
</section>
<!-- footer -->
<footer>
<div class="footer-content">
<div class="footer-section footer-contact">
<h3>Contact Us</h3>
<p>Polytechnic Chowk, Subhash Nagar, Purnia, Bihar 854301</p>
<p>Phone: 06454-226777</p>
<p>Email: [email protected]</p>
</div>
<div class="footer-section footer-links">
<h3>Links</h3>
<nav id="footLink">
<div>
<a href="index.html">Home</a>
<a href="pages/aboutus.html">About Us</a>
<a href="index.html">Events</a>
<a href="pages/contanct_detalis.html">Contact</a>
</div>
</nav>
</div>
<div class="footer-section footer-social">
<h3>Follow Us</h3>
<a href="#"
><img src="CSS/Pic/slogo/Facebook_Logo_(2019).png" alt="Facebook"
/></a>
<a href="#"
><img
src="CSS/Pic/slogo/twitter-3-logo-png-transparent.png"
alt="Twitter"
/></a>
<a href="#"
><img
src="CSS/Pic/slogo/instagram-Logo-PNG-Transparent-Background-download.png"
alt="Instagram"
/></a>
<a href="#"
><img
src="CSS/Pic/slogo/58e91afdeb97430e81906504.png"
alt="Linkedln"
/></a>
<a href="#"
><img src="CSS/Pic/slogo/Youtube_logo.png" alt="YouTube"
/></a>
</div>
<div class="footer-section footer-map">
<h3>Location</h3>
<div class="footer-map">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3593.251215295019!2d87.46517137562806!3d25.762264608581425!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39eff9671d4a42b3%3A0x1e4bb69c1f00afc8!2sPurnea%20College%20of%20Engineering%20(PCE)%2C%20Purnea!5e0!3m2!1sen!2sin!4v1692714149889!5m2!1sen!2sin"
width="600"
height="450"
style="border: 0"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade"
></iframe>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2023 Event Registration Collage. All rights reserved.</p>
</div>
</footer>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-Rx+T1VzGupg4BHQYs2gCW9It+akI2MM/mndMCy36UVfodzcJcF0GGLxZIzObiEfa"
crossorigin="anonymous"
></script>
<!-- JS file linking -->
<script src="JS/Search.js"></script>
<script src="JS/scripts.js"></script>
<script src="JS/hamburgerMenu.js"></script>
</body>
</html>