index.html 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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/index.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="#">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="./statistics.html">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. <div class="col-flex">
  61. <article>
  62. <img src="./images/futbol-club-barcelona.webp" alt="Escudo del Fútbol Club Barcelona" />
  63. <div class="col-flex">
  64. <span>11/09/2021</span>
  65. <h2><a href="https://www.elgoldigital.com/exhibicion-brutal-de-cristiano-ronaldo-lanza-fichaje-al-fc-barcelona/" target="_blank">Fichaje Fútbol Club Barcelona</a></h2>
  66. </div>
  67. </article>
  68. <article>
  69. <img src="./images/manchester-united-fc.webp" alt="Estudo del Manchester United" />
  70. <div class="col-flex">
  71. <span>10/09/2021</span>
  72. <h2><a href="https://es-us.deportes.yahoo.com/historia-real-vuelta-cristiano-ronaldo-manchester-united-094851054.html" target="_blank">Mudanza al Manchester United</a></h2>
  73. </div>
  74. </article>
  75. </div>
  76. <div class="col-flex">
  77. <article>
  78. <img src="./images/cristiano-ronaldo-preocupado-lesion.webp" alt="Representación de lesión" />
  79. <div class="col-flex">
  80. <span>26/03/2019</span>
  81. <h2><a href="https://www.elcomercio.com/deportes/futbol/futbol-cristiano-ronaldo-lesion-leve.html" target="_blank">Podrá con la lesión</a></h2>
  82. </div>
  83. </article>
  84. <article>
  85. <img src="./images/quinto-balon-oro.webp" alt="Cristiano Ronaldo sugetando su quinto Balón de Oro" />
  86. <div class="col-flex">
  87. <span>07/12/2017</span>
  88. <h2><a href="https://revistaronda.net/cristiano-ronaldo-gano-quinto-balon-oro-fotos/" target="_blank">Conseguido el quinto balón de oro</a></h2>
  89. </div>
  90. </article>
  91. </div>
  92. </main>
  93. <footer>
  94. <p>
  95. 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>
  96. </p>
  97. </footer>
  98. </body>
  99. </html>