1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <!DOCTYPE html>
- <!--
- Copyright (C) 2021 Echedey López Romero <elr@disroot.org>
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- -->
- <html lang="es">
- <head>
- <meta charset="utf-8" />
- <title>Cristiano Ronaldo</title>
- <meta name="author" content="Echedey López Romero" />
- <meta name="description" content="Sitio web sobre Cristiano Ronaldo" />
- <meta name="keywords" content="Fútbol, Cristiano Ronaldo" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <link rel="stylesheet" href="./css/common.css" />
- <link rel="stylesheet" href="./css/links.css" />
- </head>
- <body>
- <header>
- <img src="./images/cristiano-ronaldo.webp" alt="Cara de Cristiano Ronaldo" />
- <h1>Cristiano Ronaldo</h1>
- </header>
- <nav>
- <ul>
- <li>
- <a href="./index.html">Inicio</a>
- </li>
- <li>
- <a href="./biography.html">Biografía</a>
- </li>
- <li>
- <a href="./gallery.html">Galería</a>
- </li>
- <li>
- <a href="./teams.html">Equipos</a>
- </li>
- <li>
- <a href="./videos.html">Vídeos</a>
- </li>
- <li>
- <a href="./statistics.html">Estadísticas</a>
- </li>
- <li>
- <a href="./contact.html">Contacto</a>
- </li>
- <li>
- <a href="#">Enlaces</a>
- </li>
- </ul>
- </nav>
- <main>
- <div>
- <ul>
- <li><a href="https://es.wikipedia.org/wiki/Cristiano_Ronaldo" target="_blank">Cristiano Ronaldo (Wikipedia en Español)</a></li>
- <li><a href="https://www.biografiacortade.com/cristiano-ronaldo/" target="_blank">Biografía (Biografía Corta de)</a></li>
- <li><a href="https://es.wikipedia.org/wiki/Anexo:Estad%C3%ADsticas_de_Cristiano_Ronaldo" target="_blank">Estadísticas como jugador (Wikipedia en Español)</a></li>
- <li><a href="https://es.wikipedia.org/wiki/Anexo:R%C3%A9cords_y_logros_de_Cristiano_Ronaldo" target="_blank">Records y logros (Wikipedia en Español)</a></li>
- <li><a href="https://as.com/tag/cristiano_ronaldo/" target="_blank">Noticias (as)</a></li>
- <li><a href="https://commons.wikimedia.org/w/index.php?search=Cristiano+Ronaldo&title=Special:MediaSearch&go=Go&type=image" target="_blank">Imágenes (Wikimedia Commons)</a></li>
- </ul>
- </div>
- </main>
- <footer>
- <p>
- Copyright © 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>
- </p>
- </footer>
- </body>
- </html>
|