statistics.html 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <!DOCTYPE html>
  2. <!--
  3. Copyright (C) 2021 Echedey López Romero <elr@disroot.org>
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. -->
  15. <html lang="es">
  16. <head>
  17. <meta charset="utf-8" />
  18. <title>Cristiano Ronaldo</title>
  19. <meta name="author" content="Echedey López Romero" />
  20. <meta name="description" content="Sitio web sobre Cristiano Ronaldo" />
  21. <meta name="keywords" content="Fútbol, Cristiano Ronaldo" />
  22. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  23. <link rel="stylesheet" href="./css/common.css" />
  24. <link rel="stylesheet" href="./css/statistics.css" />
  25. </head>
  26. <body>
  27. <header>
  28. <img src="./images/cristiano-ronaldo.webp" alt="Cara de Cristiano Ronaldo" />
  29. <h1>Cristiano Ronaldo</h1>
  30. </header>
  31. <nav>
  32. <ul>
  33. <li>
  34. <a href="./index.html">Inicio</a>
  35. </li>
  36. <li>
  37. <a href="./biography.html">Biografía</a>
  38. </li>
  39. <li>
  40. <a href="./gallery.html">Galería</a>
  41. </li>
  42. <li>
  43. <a href="./teams.html">Equipos</a>
  44. </li>
  45. <li>
  46. <a href="./videos.html">Vídeos</a>
  47. </li>
  48. <li>
  49. <a href="#">Estadísticas</a>
  50. </li>
  51. <li>
  52. <a href="./contact.html">Contacto</a>
  53. </li>
  54. <li>
  55. <a href="./links.html">Enlaces</a>
  56. </li>
  57. </ul>
  58. </nav>
  59. <main>
  60. <section>
  61. <h2>Torneos con la Selección Nacional</h2>
  62. <ol>
  63. <li>Eurocopa: 2016</li>
  64. <li>Liga de las Naciones de la UEFA: 2019</li>
  65. <li>Torneo Esperanzas de Toulon: 2003</li>
  66. </ol>
  67. </section>
  68. <section>
  69. <h2>Torneos Internacionales</h2>
  70. <ol>
  71. <li>Copa Mundial de Clubes: 2008, 2014, 2016, 2017</li>
  72. <li>UEFA Champions League: 2008, 2014, 2016, 2017, 2018</li>
  73. <li>Supercopa Europea: 2014, 2016, 2017</li>
  74. </ol>
  75. </section>
  76. <section>
  77. <h2>Ligas, Torneos y Copas Nacionales</h2>
  78. <ol>
  79. <li>España:
  80. <ol>
  81. <li>La Liga: 2012, 2017</li>
  82. <li>Copa del Rey: 2011, 2014</li>
  83. <li>Supercopa de España: 2012, 2017</li>
  84. </ol>
  85. </li>
  86. <li>Inglaterra:
  87. <ol>
  88. <li>FA Premier League: 2007, 2008, 2009</li>
  89. <li>FA Cup: 2004</li>
  90. <li>Community Shield: 2007, 2008</li>
  91. <li>Football League Cup: 2006, 2009</li>
  92. </ol>
  93. </li>
  94. <li>Italia:
  95. <ol>
  96. <li>Calcio: 2019, 2020</li>
  97. <li>Copa Italia: 2021</li>
  98. <li>Supercoppa Italiana: 2018, 2020</li>
  99. </ol>
  100. </li>
  101. <li>Portugal:
  102. <ol>
  103. <li>Superliga: 2002</li>
  104. <li>Taça de Portugal: 2002</li>
  105. <li>Supertaça Cândido de Oliveira: 2002</li>
  106. </ol>
  107. </li>
  108. </ol>
  109. </section>
  110. </main>
  111. <footer>
  112. <p>
  113. Copyright &copy; 2021 - Echedey López Romero - <a href="https://www.gnu.org/licenses/gpl-3.0-standalone.html" target="_blank">GPL 3.0 or superior</a>
  114. </p>
  115. </footer>
  116. </body>
  117. </html>