123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <!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/statistics.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="#">Estadísticas</a>
- </li>
- <li>
- <a href="./contact.html">Contacto</a>
- </li>
- <li>
- <a href="./links.html">Enlaces</a>
- </li>
- </ul>
- </nav>
- <main>
- <section>
- <h2>Torneos con la Selección Nacional</h2>
- <ol>
- <li>Eurocopa: 2016</li>
- <li>Liga de las Naciones de la UEFA: 2019</li>
- <li>Torneo Esperanzas de Toulon: 2003</li>
- </ol>
- </section>
- <section>
- <h2>Torneos Internacionales</h2>
- <ol>
- <li>Copa Mundial de Clubes: 2008, 2014, 2016, 2017</li>
- <li>UEFA Champions League: 2008, 2014, 2016, 2017, 2018</li>
- <li>Supercopa Europea: 2014, 2016, 2017</li>
- </ol>
- </section>
- <section>
- <h2>Ligas, Torneos y Copas Nacionales</h2>
- <ol>
- <li>España:
- <ol>
- <li>La Liga: 2012, 2017</li>
- <li>Copa del Rey: 2011, 2014</li>
- <li>Supercopa de España: 2012, 2017</li>
- </ol>
- </li>
- <li>Inglaterra:
- <ol>
- <li>FA Premier League: 2007, 2008, 2009</li>
- <li>FA Cup: 2004</li>
- <li>Community Shield: 2007, 2008</li>
- <li>Football League Cup: 2006, 2009</li>
- </ol>
- </li>
- <li>Italia:
- <ol>
- <li>Calcio: 2019, 2020</li>
- <li>Copa Italia: 2021</li>
- <li>Supercoppa Italiana: 2018, 2020</li>
- </ol>
- </li>
- <li>Portugal:
- <ol>
- <li>Superliga: 2002</li>
- <li>Taça de Portugal: 2002</li>
- <li>Supertaça Cândido de Oliveira: 2002</li>
- </ol>
- </li>
- </ol>
- </section>
- </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>
|