create me a part for the statistics - Follow Up Deployment
Browse files- index.html +90 -0
index.html
CHANGED
|
@@ -110,6 +110,7 @@
|
|
| 110 |
<a href="#team" class="hover:text-yellow-400 transition">Team</a>
|
| 111 |
<a href="#matches" class="hover:text-yellow-400 transition">Matches</a>
|
| 112 |
<a href="#training" class="hover:text-yellow-400 transition">Training Programs</a>
|
|
|
|
| 113 |
<a href="#gallery" class="hover:text-yellow-400 transition">Gallery</a>
|
| 114 |
<a href="#contact" class="hover:text-yellow-400 transition">Contact</a>
|
| 115 |
</div>
|
|
@@ -125,6 +126,7 @@
|
|
| 125 |
<a href="#team" class="block py-2 hover:text-yellow-400 transition">Team</a>
|
| 126 |
<a href="#matches" class="block py-2 hover:text-yellow-400 transition">Matches</a>
|
| 127 |
<a href="#training" class="block py-2 hover:text-yellow-400 transition">Training Programs</a>
|
|
|
|
| 128 |
<a href="#gallery" class="block py-2 hover:text-yellow-400 transition">Gallery</a>
|
| 129 |
<a href="#contact" class="block py-2 hover:text-yellow-400 transition">Contact</a>
|
| 130 |
</div>
|
|
@@ -299,6 +301,94 @@
|
|
| 299 |
</div>
|
| 300 |
</section>
|
| 301 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 302 |
<!-- Team Section -->
|
| 303 |
<section id="team" class="py-16 bg-gray-100">
|
| 304 |
<div class="container mx-auto px-6">
|
|
|
|
| 110 |
<a href="#team" class="hover:text-yellow-400 transition">Team</a>
|
| 111 |
<a href="#matches" class="hover:text-yellow-400 transition">Matches</a>
|
| 112 |
<a href="#training" class="hover:text-yellow-400 transition">Training Programs</a>
|
| 113 |
+
<a href="#stats" class="hover:text-yellow-400 transition">Statistics</a>
|
| 114 |
<a href="#gallery" class="hover:text-yellow-400 transition">Gallery</a>
|
| 115 |
<a href="#contact" class="hover:text-yellow-400 transition">Contact</a>
|
| 116 |
</div>
|
|
|
|
| 126 |
<a href="#team" class="block py-2 hover:text-yellow-400 transition">Team</a>
|
| 127 |
<a href="#matches" class="block py-2 hover:text-yellow-400 transition">Matches</a>
|
| 128 |
<a href="#training" class="block py-2 hover:text-yellow-400 transition">Training Programs</a>
|
| 129 |
+
<a href="#stats" class="block py-2 hover:text-yellow-400 transition">Statistics</a>
|
| 130 |
<a href="#gallery" class="block py-2 hover:text-yellow-400 transition">Gallery</a>
|
| 131 |
<a href="#contact" class="block py-2 hover:text-yellow-400 transition">Contact</a>
|
| 132 |
</div>
|
|
|
|
| 301 |
</div>
|
| 302 |
</section>
|
| 303 |
|
| 304 |
+
<!-- Statistics Section -->
|
| 305 |
+
<section id="stats" class="py-16 bg-blue-900 text-white">
|
| 306 |
+
<div class="container mx-auto px-6">
|
| 307 |
+
<h2 class="logo-font text-4xl mb-12 text-center text-yellow-400">Team Statistics</h2>
|
| 308 |
+
|
| 309 |
+
<div class="grid grid-cols-2 md:grid-cols-4 gap-6 mb-12">
|
| 310 |
+
<!-- Stat 1 -->
|
| 311 |
+
<div class="bg-blue-800 p-6 rounded-lg text-center">
|
| 312 |
+
<div class="text-4xl font-bold mb-2">24</div>
|
| 313 |
+
<div class="text-sm uppercase tracking-wider">Matches Played</div>
|
| 314 |
+
</div>
|
| 315 |
+
|
| 316 |
+
<!-- Stat 2 -->
|
| 317 |
+
<div class="bg-blue-800 p-6 rounded-lg text-center">
|
| 318 |
+
<div class="text-4xl font-bold mb-2">18</div>
|
| 319 |
+
<div class="text-sm uppercase tracking-wider">Wins</div>
|
| 320 |
+
</div>
|
| 321 |
+
|
| 322 |
+
<!-- Stat 3 -->
|
| 323 |
+
<div class="bg-blue-800 p-6 rounded-lg text-center">
|
| 324 |
+
<div class="text-4xl font-bold mb-2">4</div>
|
| 325 |
+
<div class="text-sm uppercase tracking-wider">Draws</div>
|
| 326 |
+
</div>
|
| 327 |
+
|
| 328 |
+
<!-- Stat 4 -->
|
| 329 |
+
<div class="bg-blue-800 p-6 rounded-lg text-center">
|
| 330 |
+
<div class="text-4xl font-bold mb-2">2</div>
|
| 331 |
+
<div class="text-sm uppercase tracking-wider">Losses</div>
|
| 332 |
+
</div>
|
| 333 |
+
</div>
|
| 334 |
+
|
| 335 |
+
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
|
| 336 |
+
<!-- Top Scorers -->
|
| 337 |
+
<div class="bg-blue-800 p-6 rounded-lg">
|
| 338 |
+
<h3 class="text-xl font-bold mb-4 text-yellow-400">Top Scorers</h3>
|
| 339 |
+
<div class="space-y-4">
|
| 340 |
+
<div class="flex justify-between">
|
| 341 |
+
<span>Andrea Ventrice</span>
|
| 342 |
+
<span class="font-bold">14 goals</span>
|
| 343 |
+
</div>
|
| 344 |
+
<div class="flex justify-between">
|
| 345 |
+
<span>Marco Menichelli</span>
|
| 346 |
+
<span class="font-bold">8 goals</span>
|
| 347 |
+
</div>
|
| 348 |
+
<div class="flex justify-between">
|
| 349 |
+
<span>Daniele Conti</span>
|
| 350 |
+
<span class="font-bold">6 goals</span>
|
| 351 |
+
</div>
|
| 352 |
+
</div>
|
| 353 |
+
</div>
|
| 354 |
+
|
| 355 |
+
<!-- Clean Sheets -->
|
| 356 |
+
<div class="bg-blue-800 p-6 rounded-lg">
|
| 357 |
+
<h3 class="text-xl font-bold mb-4 text-yellow-400">Clean Sheets</h3>
|
| 358 |
+
<div class="space-y-4">
|
| 359 |
+
<div class="flex justify-between">
|
| 360 |
+
<span>Alessandro Sabia</span>
|
| 361 |
+
<span class="font-bold">9 clean sheets</span>
|
| 362 |
+
</div>
|
| 363 |
+
<div class="flex justify-between">
|
| 364 |
+
<span>Team Total</span>
|
| 365 |
+
<span class="font-bold">12 clean sheets</span>
|
| 366 |
+
</div>
|
| 367 |
+
</div>
|
| 368 |
+
</div>
|
| 369 |
+
|
| 370 |
+
<!-- Discipline -->
|
| 371 |
+
<div class="bg-blue-800 p-6 rounded-lg">
|
| 372 |
+
<h3 class="text-xl font-bold mb-4 text-yellow-400">Discipline</h3>
|
| 373 |
+
<div class="space-y-4">
|
| 374 |
+
<div class="flex justify-between">
|
| 375 |
+
<span>Yellow Cards</span>
|
| 376 |
+
<span class="font-bold">24</span>
|
| 377 |
+
</div>
|
| 378 |
+
<div class="flex justify-between">
|
| 379 |
+
<span>Red Cards</span>
|
| 380 |
+
<span class="font-bold">2</span>
|
| 381 |
+
</div>
|
| 382 |
+
<div class="flex justify-between">
|
| 383 |
+
<span>Fair Play Rank</span>
|
| 384 |
+
<span class="font-bold">3rd</span>
|
| 385 |
+
</div>
|
| 386 |
+
</div>
|
| 387 |
+
</div>
|
| 388 |
+
</div>
|
| 389 |
+
</div>
|
| 390 |
+
</section>
|
| 391 |
+
|
| 392 |
<!-- Team Section -->
|
| 393 |
<section id="team" class="py-16 bg-gray-100">
|
| 394 |
<div class="container mx-auto px-6">
|