-
Notifications
You must be signed in to change notification settings - Fork 0
/
stats-leader.html
637 lines (630 loc) · 36.3 KB
/
stats-leader.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stats Leader | 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 stats-leader-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" 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 active" aria-current="page" 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-primary fw-bolder">Stats <span class="text-white">Leader</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 -->
<!-- Gallery 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 mb-lg-0">
<div class="col-12 col-lg-auto text-lg-start text-center">
<h2 class="text-secondary fw-bolder text-uppercase">Player <span class="text-primary">Statistics</span></h2>
</div>
<div class="col-12 col-lg">
<form action="">
<div class="row gy-2 gx-1">
<div class="col-12 col-sm-5">
<select class="form-select" aria-label="Invitational Conference">
<option selected="">Invitational Conference</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
</div>
<div class="col-12 col-sm-5">
<select class="form-select" aria-label="Select Team">
<option selected="">Select Team</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
</div>
<div class="col-12 col-sm-2">
<button type="submit" class="btn btn-danger text-white btn-sm rounded-2 fw-bold p-1 w-100 h-100">Apply</button>
</div>
</div>
</form>
</div>
</div>
<div class="row row-cols-1 gy-6">
<div class="col">
<div class="table-responsive">
<table class="table table-borderless table-secondary table-striped align-middle rounded-4 overflow-hidden mb-0">
<thead class="fw-bolder align-middle">
<tr class="text-center">
<th scope="col" class="table-primary text-uppercase text-secondary">Rank</th>
<th scope="col" class="table-secondary text-primary fs-4 px-md-5 text-start">Name</th>
<th scope="col" class="table-secondary text-primary fs-4">Spike</th>
<th scope="col" class="table-secondary text-primary fs-4">Block</th>
<th scope="col" class="table-secondary text-primary fs-4">Serve</th>
<th scope="col" class="table-secondary text-primary fs-4">Total</th>
</tr>
</thead>
<tbody class="text-center">
<tr>
<th scope="row" class="table-primary text-center">1</th>
<td class="px-md-5 text-start d-flex align-items-center">
<div class="player-profile mb-1 me-3">
<div class="player-image">
<img src="assets/img/players/COBB-AKA.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
<div class="team-image">
<img src="assets/img/teams/web-akari.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
</div>
PASCUAL, JHASMIN GAYLE
</td>
<td>4</td>
<td>1</td>
<td>4</td>
<td>1</td>
</tr>
<tr>
<th scope="row" class="table-primary text-center">2</th>
<td class="px-md-5 text-start d-flex align-items-center">
<div class="player-profile mb-1 me-3">
<div class="player-image">
<img src="assets/img/players/instrella-f2.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
<div class="team-image">
<img src="assets/img/teams/F2-cubelogoRC.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
</div>
SOLTONES, GRETHCEL
</td>
<td>3</td>
<td>2</td>
<td>3</td>
<td>2</td>
</tr>
<tr>
<th scope="row" class="table-primary text-center">3</th>
<td class="px-md-5 text-start d-flex align-items-center">
<div class="player-profile mb-1 me-3">
<div class="player-image">
<img src="assets/img/players/Gamit.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
<div class="team-image">
<img src="assets/img/teams/FarmFresh_200x200.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
</div>
GASTON, PAULINE MARIE MONIQUE
</td>
<td>3</td>
<td>2</td>
<td>3</td>
<td>2</td>
</tr>
<tr>
<th scope="row" class="table-primary text-center">4</th>
<td class="px-md-5 text-start d-flex align-items-center">
<div class="player-profile mb-1 me-3">
<div class="player-image">
<img src="assets/img/players/Nierva.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
<div class="team-image">
<img src="assets/img/teams/chery.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
</div>
DY, KIM KIANNA
</td>
<td>3</td>
<td>2</td>
<td>3</td>
<td>2</td>
</tr>
<tr>
<th scope="row" class="table-primary text-center">5</th>
<td class="px-md-5 text-start d-flex align-items-center">
<div class="player-profile mb-1 me-3">
<div class="player-image">
<img src="assets/img/players/Dionela-chd.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
<div class="team-image">
<img src="assets/img/teams/cignal.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
</div>
BERTOLANO, ALYSSA
</td>
<td>2</td>
<td>3</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<th scope="row" class="table-primary text-center">6</th>
<td class="px-md-5 text-start d-flex align-items-center">
<div class="player-profile mb-1 me-3">
<div class="player-image">
<img src="assets/img/players/Daquis-chd.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
<div class="team-image">
<img src="assets/img/teams/cignal.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
</div>
RONDINA, CHERRY ANN
</td>
<td>2</td>
<td>3</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<th scope="row" class="table-primary text-center">7</th>
<td class="px-md-5 text-start d-flex align-items-center">
<div class="player-profile mb-1 me-3">
<div class="player-image">
<img src="assets/img/players/Angeles.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
<div class="team-image">
<img src="assets/img/teams/Gerflor_Defenders_200x200.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
</div>
DOMINGO, CELINE ELAIZA
</td>
<td>1</td>
<td>4</td>
<td>1</td>
<td>4</td>
</tr>
<tr>
<th scope="row" class="table-primary text-center">8</th>
<td class="px-md-5 text-start d-flex align-items-center">
<div class="player-profile mb-1 me-3">
<div class="player-image">
<img src="assets/img/players/SOLTONES-PGA.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
<div class="team-image">
<img src="assets/img/teams/gazz.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
</div>
PALOMATA, DELL
</td>
<td>1</td>
<td>4</td>
<td>1</td>
<td>4</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="col">
<div class="table-responsive">
<table class="table table-borderless table-secondary table-striped align-middle rounded-4 overflow-hidden mb-0">
<thead class="fw-bolder align-middle">
<tr class="text-center">
<th scope="col" class="table-primary text-uppercase text-secondary">Rank</th>
<th scope="col" class="table-secondary text-primary fs-4 px-md-5 text-start">Name</th>
<th scope="col" class="table-secondary text-primary fs-4">Spike</th>
<th scope="col" class="table-secondary text-primary fs-4">Block</th>
<th scope="col" class="table-secondary text-primary fs-4">Serve</th>
<th scope="col" class="table-secondary text-primary fs-4">Total</th>
</tr>
</thead>
<tbody class="text-center">
<tr>
<th scope="row" class="table-primary text-center">1</th>
<td class="px-md-5 text-start d-flex align-items-center">
<div class="player-profile mb-1 me-3">
<div class="player-image">
<img src="assets/img/players/COBB-AKA.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
<div class="team-image">
<img src="assets/img/teams/web-akari.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
</div>
PASCUAL, JHASMIN GAYLE
</td>
<td>4</td>
<td>1</td>
<td>4</td>
<td>1</td>
</tr>
<tr>
<th scope="row" class="table-primary text-center">2</th>
<td class="px-md-5 text-start d-flex align-items-center">
<div class="player-profile mb-1 me-3">
<div class="player-image">
<img src="assets/img/players/instrella-f2.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
<div class="team-image">
<img src="assets/img/teams/F2-cubelogoRC.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
</div>
SOLTONES, GRETHCEL
</td>
<td>3</td>
<td>2</td>
<td>3</td>
<td>2</td>
</tr>
<tr>
<th scope="row" class="table-primary text-center">3</th>
<td class="px-md-5 text-start d-flex align-items-center">
<div class="player-profile mb-1 me-3">
<div class="player-image">
<img src="assets/img/players/Gamit.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
<div class="team-image">
<img src="assets/img/teams/FarmFresh_200x200.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
</div>
GASTON, PAULINE MARIE MONIQUE
</td>
<td>3</td>
<td>2</td>
<td>3</td>
<td>2</td>
</tr>
<tr>
<th scope="row" class="table-primary text-center">4</th>
<td class="px-md-5 text-start d-flex align-items-center">
<div class="player-profile mb-1 me-3">
<div class="player-image">
<img src="assets/img/players/Nierva.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
<div class="team-image">
<img src="assets/img/teams/chery.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
</div>
DY, KIM KIANNA
</td>
<td>3</td>
<td>2</td>
<td>3</td>
<td>2</td>
</tr>
<tr>
<th scope="row" class="table-primary text-center">5</th>
<td class="px-md-5 text-start d-flex align-items-center">
<div class="player-profile mb-1 me-3">
<div class="player-image">
<img src="assets/img/players/Dionela-chd.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
<div class="team-image">
<img src="assets/img/teams/cignal.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
</div>
BERTOLANO, ALYSSA
</td>
<td>2</td>
<td>3</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<th scope="row" class="table-primary text-center">6</th>
<td class="px-md-5 text-start d-flex align-items-center">
<div class="player-profile mb-1 me-3">
<div class="player-image">
<img src="assets/img/players/Daquis-chd.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
<div class="team-image">
<img src="assets/img/teams/cignal.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
</div>
RONDINA, CHERRY ANN
</td>
<td>2</td>
<td>3</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<th scope="row" class="table-primary text-center">7</th>
<td class="px-md-5 text-start d-flex align-items-center">
<div class="player-profile mb-1 me-3">
<div class="player-image">
<img src="assets/img/players/Angeles.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
<div class="team-image">
<img src="assets/img/teams/Gerflor_Defenders_200x200.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
</div>
DOMINGO, CELINE ELAIZA
</td>
<td>1</td>
<td>4</td>
<td>1</td>
<td>4</td>
</tr>
<tr>
<th scope="row" class="table-primary text-center">8</th>
<td class="px-md-5 text-start d-flex align-items-center">
<div class="player-profile mb-1 me-3">
<div class="player-image">
<img src="assets/img/players/SOLTONES-PGA.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
<div class="team-image">
<img src="assets/img/teams/gazz.png" class="img-fluid" alt="Arena plus" width="50" height="50" />
</div>
</div>
PALOMATA, DELL
</td>
<td>1</td>
<td>4</td>
<td>1</td>
<td>4</td>
</tr>
</tbody>
</table>
</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 Gallery section -->
</div>
<!-- End of Main content -->
</div>
<!-- End of 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>