diff --git a/index.html b/index.html
index 4d3a985f3363126f8655fd63936993898c1c78dd..896bb4e3832dcc24e4d57dc39d1c3da18be6c4f7 100644
--- a/index.html
+++ b/index.html
@@ -86,5 +86,18 @@
         // Cargar la pestaña inicial (xG 1)
         showTab(0);
     </script>
+
+    <!-- Pie de Página -->
+    <footer>
+        <p>
+            Datos proporcionados por 
+            <a href="https://www.kaggle.com/datasets/slehkyi/extended-football-stats-for-european-leagues-xg" 
+               target="_blank" 
+               rel="noopener noreferrer">
+                Extended Football Stats for European Leagues (Kaggle)
+            </a>.
+        </p>
+        <p>Fernando González Sanz. 2024-25. Diseño y Evaluación de Sistemas Interactivos. UVa</p>
+    </footer>
 </body>
 </html>
diff --git a/main.css b/main.css
index df35dbbb6a06c1d5bd6bfa8d8d991b6b024fc112..3bf62c6f94fbac462a79a8c0c504846a853ab918 100644
--- a/main.css
+++ b/main.css
@@ -90,4 +90,26 @@ option {
 
 option:hover {
     background-color: #f1f1f1; /* Fondo gris claro al pasar el mouse */
+}
+
+footer {
+    display: flex;
+    justify-content: space-between;
+    align-items: center;
+    padding: 10px;
+    border-top: 1px solid #ccc;
+    margin-top: 20px;
+}
+
+footer a {
+    color: #007BFF;
+    text-decoration: none;
+}
+
+footer a:hover {
+    text-decoration: underline;
+}
+
+footer p {
+    margin: 0;
 }
\ No newline at end of file