-
Notifications
You must be signed in to change notification settings - Fork 0
/
schedule.html
539 lines (531 loc) · 33.9 KB
/
schedule.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Match Schedules | Premier Volleyball League</title>
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon.png" />
<!-- PVL Custom CSS -->
<link rel="stylesheet" href="assets/css/bundle.css" id="pvl-custom-css" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap" rel="stylesheet" />
</head>
<body class="pvl-theme schedule-page">
<div id="page-container">
<!-- Header code -->
<header class="pvl-header fixed-top">
<nav class="navbar navbar-expand-xl navbar-light py-0">
<div class="container-xl">
<a class="navbar-brand position-relative" href="index.html"><img src="assets/img/logo/pvl-logo.png" class="img-fluid pvl-logo" alt="PVL Logo" width="141" height="59" /></a>
<button class="navbar-toggler border-0" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<i class="bi bi-list text-white"></i>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<div class="row row-cols-1 py-4 d-xl-none text-secondary">
<div class="col text-center d-flex justify-content-center fs-20">
<div class="user-profile-pic"><i class="bi bi-person-circle"></i></div>
</div>
<div class="col text-center fs-8 fw-bold text-uppercase">
<div class="user-fullname">Lorem Ipsum Dolor</div>
</div>
<div class="col text-center fs-3">
<div class="user-last-login">Last Login August 10, 2023</div>
</div>
</div>
<ul class="navbar-nav navbar-nav-scroll me-auto mb-2 mb-xl-0 text-center" style="--bs-scroll-height: 400px">
<li class="nav-item">
<a class="nav-link" href="news.html">Latest News</a>
</li>
<li class="nav-item">
<a class="nav-link" href="teams.html">Teams</a>
</li>
<li class="nav-item">
<a class="nav-link" href="players.html">Players</a>
</li>
<li class="nav-item">
<a class="nav-link" href="standings.html">Standings</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="schedule.html">Schedule</a>
</li>
<li class="nav-item">
<a class="nav-link" href="recap.html">Recap</a>
</li>
<li class="nav-item">
<a class="nav-link" href="live.html">Live</a>
</li>
<li class="nav-item">
<a class="nav-link" href="videos.html">Videos</a>
</li>
<li class="nav-item">
<a class="nav-link" href="gallery.html">Photos</a>
</li>
<li class="nav-item">
<a class="nav-link" href="announcement.html">Announcement</a>
</li>
<li class="nav-item">
<a class="nav-link" href="tickets.html">Tickets</a>
</li>
<li class="nav-item me-2 d-none d-xl-block">
<a href="">
<img src="assets/img/logo/st-logo.png" class="img-fluid" alt="ST Logo" width="42" height="36" />
</a>
</li>
<li class="nav-item d-none d-xl-block">
<a href="">
<img src="assets/img/logo/vl-logo.png" class="img-fluid" alt="VL Logo" width="29" height="34" />
</a>
</li>
<li class="nav-item d-xl-none mt-4">
<a class="nav-link" href="#">My Account</a>
</li>
<li class="nav-item d-xl-none mb-4">
<a class="nav-link" href="#">Logout</a>
</li>
</ul>
<div class="nav-social-link mx-auto mb-5 d-xl-none">
<div class="d-flex justify-content-between">
<div class="social-icon-facebook d-flex justify-content-center">
<a href=""><img src="assets/img/icons/fb-logo.svg" alt="Facebook logo" width="45" height="45" /></a>
</div>
<div class="social-icon-twitter d-flex justify-content-center">
<a href=""><img src="assets/img/icons/twitter-logo.svg" alt="Twitter logo" width="45" height="45" /></a>
</div>
<div class="social-icon-instagram d-flex justify-content-center">
<a href=""><img src="assets/img/icons/instagram-logo.svg" alt="Instagram logo" width="45" height="45" /></a>
</div>
<div class="social-icon-youtube d-flex justify-content-center">
<a href=""><img src="assets/img/icons/youtube-logo.svg" alt="YouTube logo" width="45" height="45" /></a>
</div>
<div class="social-icon-tiktok d-flex justify-content-center">
<a href=""><img src="assets/img/icons/tiktok-logo.svg" alt="TikTok logo" width="45" height="45" /></a>
</div>
<div class="social-icon-kumu d-flex justify-content-center">
<a href=""><img src="assets/img/icons/kumu-logo.svg" alt="Kumu logo" width="45" height="45" /></a>
</div>
<div class="social-icon-thread d-flex justify-content-center">
<a href=""><img src="assets/img/icons/thread-logo.svg" alt="Thread logo" width="45" height="45" /></a>
</div>
</div>
</div>
<a class="btn btn-primary btn-sm rounded-pill d-none d-xl-block" href="login.html" role="button">Login</a>
</div>
</div>
</nav>
</header>
<!-- End of Header code -->
<!-- Main area code -->
<div id="pvl-main-area">
<!-- Main content -->
<div id="main-content">
<!-- Hero section -->
<section class="pvl-section-1 d-flex align-items-center position-relative bg-gray-900">
<div class="container-xl z-1">
<div class="row pt-9 pb-8">
<div class="col-12">
<div class="text-center">
<h1 class="text-white fw-bolder">Match <span class="text-primary">Schedules</span></h1>
</div>
</div>
</div>
<div class="row">
<div class="ads-banner col-12 d-flex justify-content-center">
<img src="assets/img/ads/game-on-ads-banner.png" class="img-fluid" alt="Arena plus" width="826" height="102" />
</div>
</div>
</div>
<div class="shape-divider-bottom shape-divider-1 position-absolute bottom-n50px start-0 w-100 h-100px"></div>
</section>
<!-- End of Hero section -->
<!-- Match schedule section -->
<section class="pvl-section-2 pt-8 pb-10 bg-light position-relative">
<div class="container-xl z-1">
<div class="row gy-8 gy-md-0 mb-6 mb-md-8">
<div class="col-12 col-md-9">
<div class="row mb-6">
<div class="col d-flex">
<form class="d-flex me-2" role="search">
<input class="form-control border-AEABA3 rounded-0 rounded-start px-2 fs-4" type="search" placeholder="Search" aria-label="Search" />
<button class="btn btn-AEABA3 fs-4 rounded-0 rounded-end text-white" type="submit"><i class="bi bi-search"></i></button>
</form>
<button type="button" class="btn btn-primary btn-sm rounded-2 fw-bold px-2 px-md-6" data-bs-toggle="modal" data-bs-target="#advancedSearch">Advanced Search</button>
</div>
</div>
<div class="row gy-7">
<div class="col-12">
<div class="row">
<div class="col-12 mb-2">
<div class="match-date fw-bold text-gray-900">Saturday July 10, 2023</div>
</div>
<div class="col-12">
<div class="row row-cols-1 row-cols-md-2 gy-6">
<div class="col">
<div class="match-card bg-secondary rounded-4 overflow-hidden">
<a href="" class="text-decoration-none">
<div class="match-card-teams d-flex justify-content-around pt-2 px-2 pb-3">
<div class="col d-flex justify-content-center align-items-center flex-column ps-3">
<img src="assets/img/teams/gazz.png" class="img-fluid" alt="Gazz" width="95" height="95" />
<h3 class="text-primary fw-bolder fs-15 mt-1">PGA</h3>
</div>
<div class="col d-flex justify-content-center align-items-center">
<span class="versus d-flex justify-content-center align-items-center fs-8 rounded-pill fw-bolder bg-primary text-secondary">Vs</span>
</div>
<div class="col d-flex justify-content-center align-items-center flex-column ps-3">
<img src="assets/img/teams/PLDT-highspeed-logo.png" class="img-fluid" alt="PLDT" width="95" height="95" />
<h3 class="text-primary fw-bolder fs-15 mt-1">HSH</h3>
</div>
</div>
<div class="match-card-footer text-white d-flex text-center px-2">
<div class="match-card-time fs-lg-6 fs-3 border-top border-white px-3 py-2 w-100">9:00 PM - 11PM</div>
</div>
</a>
</div>
</div>
<div class="col">
<div class="match-card bg-secondary rounded-4 overflow-hidden">
<a href="" class="text-decoration-none">
<div class="match-card-teams d-flex justify-content-around pt-2 px-2 pb-3">
<div class="col d-flex justify-content-center align-items-center flex-column ps-3">
<img src="assets/img/teams/gazz.png" class="img-fluid" alt="Gazz" width="95" height="95" />
<h3 class="text-primary fw-bolder fs-15 mt-1">PGA</h3>
</div>
<div class="col d-flex justify-content-center align-items-center">
<span class="versus d-flex justify-content-center align-items-center fs-8 rounded-pill fw-bolder bg-primary text-secondary">Vs</span>
</div>
<div class="col d-flex justify-content-center align-items-center flex-column ps-3">
<img src="assets/img/teams/PLDT-highspeed-logo.png" class="img-fluid" alt="PLDT" width="95" height="95" />
<h3 class="text-primary fw-bolder fs-15 mt-1">HSH</h3>
</div>
</div>
<div class="match-card-footer text-white d-flex text-center px-2">
<div class="match-card-time fs-lg-6 fs-3 border-top border-white px-3 py-2 w-100">9:00 PM - 11PM</div>
</div>
</a>
</div>
</div>
<div class="col">
<div class="match-card bg-secondary rounded-4 overflow-hidden">
<a href="" class="text-decoration-none">
<div class="match-card-teams d-flex justify-content-around pt-2 px-2 pb-3">
<div class="col d-flex justify-content-center align-items-center flex-column ps-3">
<img src="assets/img/teams/gazz.png" class="img-fluid" alt="Gazz" width="95" height="95" />
<h3 class="text-primary fw-bolder fs-15 mt-1">PGA</h3>
</div>
<div class="col d-flex justify-content-center align-items-center">
<span class="versus d-flex justify-content-center align-items-center fs-8 rounded-pill fw-bolder bg-primary text-secondary">Vs</span>
</div>
<div class="col d-flex justify-content-center align-items-center flex-column ps-3">
<img src="assets/img/teams/PLDT-highspeed-logo.png" class="img-fluid" alt="PLDT" width="95" height="95" />
<h3 class="text-primary fw-bolder fs-15 mt-1">HSH</h3>
</div>
</div>
<div class="match-card-footer text-white d-flex text-center px-2">
<div class="match-card-time fs-lg-6 fs-3 border-top border-white px-3 py-2 w-100">9:00 PM - 11PM</div>
</div>
</a>
</div>
</div>
<div class="col">
<div class="match-card bg-secondary rounded-4 overflow-hidden">
<a href="" class="text-decoration-none">
<div class="match-card-teams d-flex justify-content-around pt-2 px-2 pb-3">
<div class="col d-flex justify-content-center align-items-center flex-column ps-3">
<img src="assets/img/teams/gazz.png" class="img-fluid" alt="Gazz" width="95" height="95" />
<h3 class="text-primary fw-bolder fs-15 mt-1">PGA</h3>
</div>
<div class="col d-flex justify-content-center align-items-center">
<span class="versus d-flex justify-content-center align-items-center fs-8 rounded-pill fw-bolder bg-primary text-secondary">Vs</span>
</div>
<div class="col d-flex justify-content-center align-items-center flex-column ps-3">
<img src="assets/img/teams/PLDT-highspeed-logo.png" class="img-fluid" alt="PLDT" width="95" height="95" />
<h3 class="text-primary fw-bolder fs-15 mt-1">HSH</h3>
</div>
</div>
<div class="match-card-footer text-white d-flex text-center px-2">
<div class="match-card-time fs-lg-6 fs-3 border-top border-white px-3 py-2 w-100">9:00 PM - 11PM</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row">
<div class="col-12 mb-2">
<div class="match-date fw-bold text-gray-900">Saturday July 10, 2023</div>
</div>
<div class="col-12">
<div class="row row-cols-1 row-cols-md-2 gy-6">
<div class="col">
<div class="match-card bg-secondary rounded-4 overflow-hidden">
<a href="" class="text-decoration-none">
<div class="match-card-teams d-flex justify-content-around pt-2 px-2 pb-3">
<div class="col d-flex justify-content-center align-items-center flex-column ps-3">
<img src="assets/img/teams/gazz.png" class="img-fluid" alt="Gazz" width="95" height="95" />
<h3 class="text-primary fw-bolder fs-15 mt-1">PGA</h3>
</div>
<div class="col d-flex justify-content-center align-items-center">
<span class="versus d-flex justify-content-center align-items-center fs-8 rounded-pill fw-bolder bg-primary text-secondary">Vs</span>
</div>
<div class="col d-flex justify-content-center align-items-center flex-column ps-3">
<img src="assets/img/teams/PLDT-highspeed-logo.png" class="img-fluid" alt="PLDT" width="95" height="95" />
<h3 class="text-primary fw-bolder fs-15 mt-1">HSH</h3>
</div>
</div>
<div class="match-card-footer text-white d-flex text-center px-2">
<div class="match-card-time fs-lg-6 fs-3 border-top border-white px-3 py-2 w-100">9:00 PM - 11PM</div>
</div>
</a>
</div>
</div>
<div class="col">
<div class="match-card bg-secondary rounded-4 overflow-hidden">
<a href="" class="text-decoration-none">
<div class="match-card-teams d-flex justify-content-around pt-2 px-2 pb-3">
<div class="col d-flex justify-content-center align-items-center flex-column ps-3">
<img src="assets/img/teams/gazz.png" class="img-fluid" alt="Gazz" width="95" height="95" />
<h3 class="text-primary fw-bolder fs-15 mt-1">PGA</h3>
</div>
<div class="col d-flex justify-content-center align-items-center">
<span class="versus d-flex justify-content-center align-items-center fs-8 rounded-pill fw-bolder bg-primary text-secondary">Vs</span>
</div>
<div class="col d-flex justify-content-center align-items-center flex-column ps-3">
<img src="assets/img/teams/PLDT-highspeed-logo.png" class="img-fluid" alt="PLDT" width="95" height="95" />
<h3 class="text-primary fw-bolder fs-15 mt-1">HSH</h3>
</div>
</div>
<div class="match-card-footer text-white d-flex text-center px-2">
<div class="match-card-time fs-lg-6 fs-3 border-top border-white px-3 py-2 w-100">9:00 PM - 11PM</div>
</div>
</a>
</div>
</div>
<div class="col">
<div class="match-card bg-secondary rounded-4 overflow-hidden">
<a href="" class="text-decoration-none">
<div class="match-card-teams d-flex justify-content-around pt-2 px-2 pb-3">
<div class="col d-flex justify-content-center align-items-center flex-column ps-3">
<img src="assets/img/teams/gazz.png" class="img-fluid" alt="Gazz" width="95" height="95" />
<h3 class="text-primary fw-bolder fs-15 mt-1">PGA</h3>
</div>
<div class="col d-flex justify-content-center align-items-center">
<span class="versus d-flex justify-content-center align-items-center fs-8 rounded-pill fw-bolder bg-primary text-secondary">Vs</span>
</div>
<div class="col d-flex justify-content-center align-items-center flex-column ps-3">
<img src="assets/img/teams/PLDT-highspeed-logo.png" class="img-fluid" alt="PLDT" width="95" height="95" />
<h3 class="text-primary fw-bolder fs-15 mt-1">HSH</h3>
</div>
</div>
<div class="match-card-footer text-white d-flex text-center px-2">
<div class="match-card-time fs-lg-6 fs-3 border-top border-white px-3 py-2 w-100">9:00 PM - 11PM</div>
</div>
</a>
</div>
</div>
<div class="col">
<div class="match-card bg-secondary rounded-4 overflow-hidden">
<a href="" class="text-decoration-none">
<div class="match-card-teams d-flex justify-content-around pt-2 px-2 pb-3">
<div class="col d-flex justify-content-center align-items-center flex-column ps-3">
<img src="assets/img/teams/gazz.png" class="img-fluid" alt="Gazz" width="95" height="95" />
<h3 class="text-primary fw-bolder fs-15 mt-1">PGA</h3>
</div>
<div class="col d-flex justify-content-center align-items-center">
<span class="versus d-flex justify-content-center align-items-center fs-8 rounded-pill fw-bolder bg-primary text-secondary">Vs</span>
</div>
<div class="col d-flex justify-content-center align-items-center flex-column ps-3">
<img src="assets/img/teams/PLDT-highspeed-logo.png" class="img-fluid" alt="PLDT" width="95" height="95" />
<h3 class="text-primary fw-bolder fs-15 mt-1">HSH</h3>
</div>
</div>
<div class="match-card-footer text-white d-flex text-center px-2">
<div class="match-card-time fs-lg-6 fs-3 border-top border-white px-3 py-2 w-100">9:00 PM - 11PM</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 col-md-3">
<div class="row gy-6 justify-content-end">
<div class="col-12 col-md-auto d-flex justify-content-center">
<img src="assets/img/ads/kfc-ads-banner.png" class="img-fluid" alt="Arena plus" width="300" height="250" />
</div>
<div class="col-12 col-md-auto d-flex justify-content-center">
<img src="assets/img/ads/pvl-invitational-conference-ads-banner.png" class="img-fluid" alt="Arena plus" width="300" height="251" />
</div>
<div class="col-12 col-md-auto d-flex justify-content-center">
<img src="assets/img/ads/xm-ads-banner.png" class="img-fluid" alt="Arena plus" width="300" height="164" />
</div>
</div>
</div>
</div>
<div class="row">
<div class="mw-675px mx-auto">
<div class="d-flex flex-sm-row justify-content-sm-between flex-column align-items-center">
<div class="ads-banner mb-sm-0 mb-6">
<img src="assets/img/logo/Alogo_new.png" class="img-fluid" alt="Arena plus" width="165" height="42" />
</div>
<div class="ads-banner mb-sm-0 mb-6">
<img src="assets/img/logo/UNJ7LGZB2XXJBCJ2QETSW9X2R2FZV9KVTW5THZ2Y-607fe51c.png" class="img-fluid" alt="Kumu" width="155" height="55" />
</div>
<div class="ads-banner">
<img src="assets/img/logo/images-3.png" class="img-fluid" alt="Milcu" width="105" height="48" />
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End of Match schedule section -->
</div>
<!-- End of Main content -->
<!-- Advanced search modal -->
<div class="modal fade" id="advancedSearch" tabindex="-1" aria-labelledby="advancedSearchLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header bg-primary py-2">
<h2 class="modal-title fs-8 fw-bold text-secondary" id="advancedSearchLabel">Advanced Search</h2>
<button type="button" class="btn-close border-0 bg-primary px-2 py-0" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form action="">
<div class="row row-cols-1 gy-2">
<div class="col d-flex justify-content-end">
<button type="button" class="btn btn-secondary text-white btn-sm rounded-2 fw-bold">Clear Filter</button>
</div>
<div class="col">
<select class="form-select" aria-label="Conference Name">
<option selected>Conference Name</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
</div>
<div class="col">
<select class="form-select" aria-label="Year">
<option selected>Year</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
</div>
<div class="col">
<select class="form-select" aria-label="Teams">
<option selected>Teams</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
</div>
<div class="col">
<button type="submit" class="btn btn-danger text-white btn-sm rounded-2 fw-bold w-100">Search</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- End of Advanced search modal -->
</div>
<!-- Main area code -->
<!-- Footer code -->
<footer class="pvl-footer pt-4 pb-4 bg-gray-900 position-relative">
<div class="container-xl position-relative z-1">
<div class="row row-cols-1 gy-4">
<div class="col text-center d-block d-lg-none order-1 order-lg-1">
<img src="assets/img/logo/pvl-logo-white.png" class="img-fluid" alt="Arena plus" width="115" height="48" />
</div>
<div class="col text-center order-3 order-lg-1">
<span class="text-white fs-6 fw-bold">Quick Links</span>
</div>
<div class="col order-4 order-lg-1">
<div class="mw-980px mx-auto">
<div class="footer-nav">
<ul class="d-flex justify-content-around list-style-none m-0 p-0">
<li class="nav-item d-flex justify-content-center align-items-center mx-2">
<a class="text-decoration-none" href="news.html">Latest News</a>
</li>
<li class="nav-item d-flex justify-content-center align-items-center mx-2">
<a class="text-decoration-none" href="teams.html">Teams</a>
</li>
<li class="nav-item d-flex justify-content-center align-items-center mx-2">
<a class="text-decoration-none" href="players.html">Players</a>
</li>
<li class="nav-item d-flex justify-content-center align-items-center mx-2">
<a class="text-decoration-none" href="standings.html">Standings</a>
</li>
<li class="nav-item d-flex justify-content-center align-items-center mx-2">
<a class="text-decoration-none" href="schedule.html">Schedule</a>
</li>
<li class="nav-item d-flex justify-content-center align-items-center mx-2">
<a class="text-decoration-none" href="recap.html">Recap</a>
</li>
<li class="nav-item d-flex justify-content-center align-items-center mx-2">
<a class="text-decoration-none" href="live.html">Live</a>
</li>
<li class="nav-item d-flex justify-content-center align-items-center mx-2">
<a class="text-decoration-none" href="videos.html">Videos</a>
</li>
<li class="nav-item d-flex justify-content-center align-items-center mx-2">
<a class="text-decoration-none" href="gallery.html">Photos</a>
</li>
<li class="nav-item d-flex justify-content-center align-items-center mx-2">
<a class="text-decoration-none" href="announcement.html">Announcement</a>
</li>
<li class="nav-item d-flex justify-content-center align-items-center mx-2">
<a class="text-decoration-none" href="tickets.html">Tickets</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col border-bottom-0 border-bottom-lg border-white pb-0 pb-lg-6 order-2 order-lg-1">
<div class="mw-290px mx-auto">
<div class="d-flex justify-content-between">
<div class="social-icon-facebook d-flex justify-content-center">
<a href=""><img src="assets/img/icons/fb-logo.svg" alt="Facebook logo" width="35" height="35" /></a>
</div>
<div class="social-icon-twitter d-flex justify-content-center">
<a href=""><img src="assets/img/icons/twitter-logo.svg" alt="Twitter logo" width="35" height="35" /></a>
</div>
<div class="social-icon-instagram d-flex justify-content-center">
<a href=""><img src="assets/img/icons/instagram-logo.svg" alt="Instagram logo" width="35" height="35" /></a>
</div>
<div class="social-icon-youtube d-flex justify-content-center">
<a href=""><img src="assets/img/icons/youtube-logo.svg" alt="YouTube logo" width="35" height="35" /></a>
</div>
<div class="social-icon-tiktok d-flex justify-content-center">
<a href=""><img src="assets/img/icons/tiktok-logo.svg" alt="TikTok logo" width="35" height="35" /></a>
</div>
<div class="social-icon-kumu d-flex justify-content-center">
<a href=""><img src="assets/img/icons/kumu-logo.svg" alt="Kumu logo" width="35" height="35" /></a>
</div>
<div class="social-icon-thread d-flex justify-content-center">
<a href=""><img src="assets/img/icons/thread-logo.svg" alt="Thread logo" width="35" height="35" /></a>
</div>
</div>
</div>
</div>
<div class="col text-white text-center order-5 order-lg-1">
<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. © 2023 Premier Volleyball League</span>
</div>
</div>
</div>
<div class="shape-divider-top shape-divider-7 position-absolute top-n50px start-0 w-100 h-100px"></div>
</footer>
<!-- End of Footer code -->
</div>
<!-- PVL Custom JS -->
<script type="text/javascript" src="assets/js/bundle.js" id="pvl-custom-js"></script>
</body>
</html>