CINXE.COM

Valencia CF: Plantilla, jugadores y directos de Valencia CF en Primera Divisi贸n - LaLiga EA Sports - Superdeporte

<!DOCTYPE html> <html lang="es"> <head> <meta charset="utf-8"> <meta id="meta_viewport" name="viewport" content="width=device-width, initial-scale=1.0"> <title>Valencia CF: Plantilla, jugadores y directos de Valencia CF en Primera Divisi贸n - LaLiga EA Sports - Superdeporte</title> <meta name="description" content="Valencia CF en Primera Divisi贸n - LaLiga EA Sports: plantilla, jugadores, datos del equipo y estad铆sticas. Sigue los partidos en directo de Valencia CF en el Primera Divisi贸n - LaLiga EA Sports."> <meta name="keywords" content="Valencia CF, Valencia CF Primera Divisi贸n - LaLiga EA Sports, equipos f煤tbol, equipos Primera Divisi贸n - LaLiga EA Sports, partidos online, f煤tbol, futbol, futbol online, futbol gratis, partidos de futbol, partidos futbol online, futbol directo"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="description" content="Valencia CF en Primera Divisi贸n - LaLiga EA Sports: plantilla, jugadores, datos del equipo y estad铆sticas. Sigue los partidos en directo de Valencia CF en el Primera Divisi贸n - LaLiga EA Sports."> <meta name="keywords" content="Valencia CF, Valencia CF Primera Divisi贸n - LaLiga EA Sports, equipos f煤tbol, equipos Primera Divisi贸n - LaLiga EA Sports, partidos online, f煤tbol, futbol, futbol online, futbol gratis, partidos de futbol, partidos futbol online, futbol directo"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="robots" content="index,follow"> <link href="https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/" rel="canonical"> <link href="https://estaticos-cdn.superdeporte.es/fonts/epi-icons.woff2" media="screen" rel="stylesheet" type="text/css"> <link href="https://estaticos-cdn.superdeporte.es/fonts/TTCommons-DemiBold.woff2" media="screen" rel="stylesheet" type="text/css"> <link href="https://estaticos-cdn.superdeporte.es/fonts/TTCommons-DemiBold2.woff2" media="screen" rel="stylesheet" type="text/css"> <link href="https://estaticos-cdn.superdeporte.es/fonts/TTCommons-Medium.woff2" media="screen" rel="stylesheet" type="text/css"> <link href="https://estaticos-cdn.superdeporte.es/fonts/TTCommons-Bold.woff2" media="screen" rel="stylesheet" type="text/css"> <link href="https://estaticos-cdn.superdeporte.es/fonts/TTCommons-Regular.woff2" media="screen" rel="stylesheet" type="text/css"> <link href="https://estaticos-cdn.superdeporte.es/cssFonts/typography.css?id=2a5dc54c72c073fe9ab9" media="screen" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600&family=Bree+Serif&family=Manuale:ital,wght@0,400;0,600;1,400;1,700&family=Montserrat:wght@400;700&family=Open+Sans:wght@300;400;600;700&family=Playfair+Display&family=Roboto+Condensed:wght@400;700&family=Roboto:wght@400;700&family=Source+Code+Pro&display=swap" media="screen" rel="stylesheet" type="text/css"> <link href="https://estaticos-cdn.superdeporte.es/css/base.css?id=1b5589ab4b1432ee47aa" media="screen" rel="stylesheet" type="text/css"> <link href="https://estaticos-cdn.superdeporte.es/css/header.css?id=eeca9bf10d3f28ec06e6" media="screen" rel="stylesheet" type="text/css"> <link href="https://estaticos-cdn.superdeporte.es/css/footer.css?id=04a8df3cb71b3073c7bb" media="screen" rel="stylesheet" type="text/css"> <link href="/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon"> <link href="/deportes/ed/css/estilos_deportes.css?id=07112024163100" media="screen" rel="stylesheet" type="text/css"> <link href="/deportes/ed/css/frisos_marcadores.css?id=07112024163100" media="screen" rel="stylesheet" type="text/css"> <link href="/deportes/ed/css/fuentes.css?id=07112024163100" media="screen" rel="stylesheet" type="text/css"> <link href="/deportes/ed/css/publicidad.css?id=07112024163100" media="screen" rel="stylesheet" type="text/css"> <script > //<!-- var app = window.app || {}; app.utils = (function (module) { if (typeof Array.isArray === 'undefined') { Array.isArray = function(obj) { return Object.prototype.toString.call(obj) === '[object Array]'; }; } if (!Array.prototype.flat) { Object.defineProperty(Array.prototype, 'flat', { configurable: true, value: function flat () { var depth = isNaN(arguments[0]) ? 1 : Number(arguments[0]); return depth ? Array.prototype.reduce.call(this, function (acc, cur) { if (Array.isArray(cur)) { acc.push.apply(acc, flat.call(cur, depth - 1)); } else { acc.push(cur); } return acc; }, []) : Array.prototype.slice.call(this); }, writable: true }); } function FlagManager(flagNames) { var self = this; self.flags = {}; if (Array.isArray(flagNames)) { for (var i = 0; i < flagNames.length; i++) { self.flags[flagNames[i]] = 2 << i; } } else if (typeof flagNames === 'object') { var i = 0; for (var p in flagNames) { if (flagNames.hasOwnProperty(p)) { self.flags[flagNames[p]] = 2 << i; i++; } } } self.value = 0; self.subscribers = {}; function getFlag(flag) { if (Array.isArray(flag)) { return flag.reduce(function (result, f) { return result | getFlag(f); }, 0); } return self.flags[flag] || flag || 0; } self.get = function (flag) { flag = getFlag(flag); return (self.value & flag) === flag; }; self.set = function (flag) { self.value |= (getFlag(flag)); setTimeout(function () { Object.keys(self.subscribers) .map(function (mask) { if (self.get(parseInt(mask))) { self.subscribers[mask].forEach(function (cb) { cb(); }); delete self.subscribers[mask]; } }.bind(self)); }.bind(self), 0); }; self.subscribe = function (mask, callBack) { mask = getFlag(mask); if (parseInt(mask) && typeof callBack === 'function') { if (self.get(mask)) return callBack(); self.subscribers[mask] = (self.subscribers[mask] || []); self.subscribers[mask].push(callBack); } }; } module.FlagManager = FlagManager; function BufferQueue(flushCallback, initialBuffer) { var self = this; self.flush = flushCallback; self.buffer = initialBuffer || []; self.isReady = false; self.doFlush = function () { if (self.buffer.length === 0) return; var elements = self.buffer.splice(0, self.buffer.length); self.flush(elements); }; self.ready = function () { self.isReady = true; self.doFlush(); }; self.push = function (element) { self.buffer.push(element); if (self.isReady) self.doFlush(); }; } module.BufferQueue = BufferQueue; module.getCookie = function (name) { var value = '; ' + document.cookie; var parts = value.split('; ' + name + '='); if (parts.length === 2) { return parts.pop() .split(';') .shift(); } }; module.setCookie = function setCookie(name, value, options) { let updatedCookie = encodeURIComponent(name) + "=" + encodeURIComponent(value); options = options || {}; for (var optionKey in options) { if (options.hasOwnProperty(optionKey)) { updatedCookie += '; ' + optionKey; let optionValue = options[optionKey]; if (optionValue !== true) { updatedCookie += '=' + optionValue; } } } document.cookie = updatedCookie; }; module.URLSearchParams = window.URLSearchParams || function () { return { has: function () { return false; }, }; }; module.getViewportHeight = function () { return Math.max(document.documentElement.clientHeight, window.innerHeight || 0); }; module.getViewportWidth = function () { return Math.max(document.documentElement.clientWidth, window.innerWidth || 0); }; module.getScreenWidth = function (def) { return screen ? screen.width : (def || 0); }; return module; })(app.utils || {}); //--> </script> <script > //<!-- var app = window.app || {}; var tp = window.tp || []; app.user = (function (initialCallbacks) { var FAILSAFE_TIMEOUT = 4000; var module = {}; var time = Date.now(); // Callback subscriptions var callbacks = new app.utils.BufferQueue(function (cbs) { cbs.map(function (cb) { cb(module.data); }); }, Array.isArray(initialCallbacks) ? initialCallbacks : []); var flags = { INITIALIZED: 'INITIALIZED', USER_INFO_LOADED: 'USER_INFO_LOADED', USER_ACCESS_LOADED: 'USER_ACCESS_LOADED', }; var flagManager = new app.utils.FlagManager(flags); module.log = console.log.bind(console, '%c[USER]', 'color:darkorange'); module.data = { piano: true, status: 'anonimo', id: null, nick: '', email: '', fullName: '', name: '', surname: '', initials: '', avatar: '/assets/images/article/default_user.png', logged: false, subscriber: false, }; module.log('&#127929; Iniciando m&oacute;dulo de usuario con Piano...'); module.log('&#127929; Calbacks iniciales:', initialCallbacks); function initialized() { app.utils.setCookie('dl_user_type', module.data.status); module.timestamp = Date.now() - time; module.log('&#128406; &iexcl;Usuario inicializado en ' + (module.timestamp / 1000).toFixed(2) + 's!', module.data); flagManager.set(flags.INITIALIZED); } var tpInitTimeout = setTimeout(function () { module.log('&#8986; Piano no se ha inicializado a tiempo.'); initialized(); }, FAILSAFE_TIMEOUT); tp.push(['init', function () { clearTimeout(tpInitTimeout); if (!tp.pianoId.isUserValid()) { module.log('&#128581; El usuario no est&aacute; registrado.'); initialized(); return; } module.log('&#128587; El usuario est&aacute; registrado.'); var tpUser = tp.pianoId.getUser(); module.data.status = 'registrado'; module.data.logged = true; module.data.id = tpUser.uid || null; module.data.email = tpUser.email || ''; module.data.name = tpUser.firstName || ''; module.data.surname = tpUser.lastName || ''; module.data.fullName = [module.data.name, module.data.surname].join(' ').trim(); module.data.initials = ((tpUser.firstName || ' ')[0] + (tpUser.lastName || ' ')[0]).trim() .toUpperCase(); var loadExtendedUserTimeout = setTimeout(function () { module.log('&#8986; Piano ha tardado demasiado en devolver la informaci&oacute;n del usuario.'); flagManager.set(flags.USER_INFO_LOADED); }, FAILSAFE_TIMEOUT); tp.pianoId.loadExtendedUser({ formName: 'bbnx-piano', extendedUserLoaded: function (data) { clearTimeout(loadExtendedUserTimeout); (data.custom_field_values || []).forEach(function (customField) { if (customField.field_name === 'picture' && customField.value ) { module.data.avatar = customField.value; } else if (customField.field_name === 'username') { module.data.nick = customField.value; } }); module.log('&#129336; Hemos obtenido la informaci&oacute;n del usuario'); flagManager.set(flags.USER_INFO_LOADED); }, }); var accessListTimeout = setTimeout(function () { module.log('&#8986; Piano ha tardado demasiado en devolver las suscripciones del usuario.'); flagManager.set(flags.USER_ACCESS_LOADED); }, FAILSAFE_TIMEOUT); tp.api.callApi('/access/list', {}, function (response) { clearTimeout(accessListTimeout); var accesses = response.data || []; for (var i in accesses) { if (accesses.hasOwnProperty(i) && accesses[i].granted ) { module.data.subscriber = true; module.data.status = 'suscriptor'; break; } } if (module.data.subscriber) { module.log('&#127940; El usuario es suscriptor.'); } else { module.log('&#129496; El usuario no es suscriptor.'); } flagManager.set(flags.USER_ACCESS_LOADED); }); }]); flagManager.subscribe(flags.INITIALIZED, callbacks.ready); flagManager.subscribe([flags.USER_ACCESS_LOADED, flags.USER_INFO_LOADED], initialized); module.callbacks = callbacks; module.flagManager = flagManager; module.push = callbacks.push; return module; })(app.user || []); //--> </script> <script src="/deportes/ed/js/jquery-3.4.1.min.js"></script> <script src="/deportes/ed/js/jquery-ui.min.js"></script> <script src="/deportes/ed/js/comun.js"></script> <script> window.dataLayer = window.dataLayer || []; window.dataLayer.push ({ "event": "pageview", "ads": { "enabled": undefined, "positions": undefined }, "campaign": { "medium": undefined, "name": undefined, "source": undefined }, "content": { "access": "abierto", "branded": undefined, "category": "deportes", "date": { "modification": undefined, "publication": undefined, "publication_short": undefined }, "front": undefined, "id": undefined, "local": { "city": undefined, "province": undefined, "region": undefined }, "local_is": "0", "multimedia": undefined, "origin": "opta", "person": { "author": "opta", "editor": "opta", "signin": undefined }, "place": undefined, "pretitle": undefined, "read": { "time": undefined }, "related": undefined, "search": undefined, "section": { "level_1": "deportes", "level_2": "futbol", "level_3": "primera-division" }, "social": undefined, "tag": undefined, "type": { "cms": "portada seccion" }, "words": undefined }, "page": { "h1": (document.querySelector('h1')) ? document.querySelector('h1').innerText.trim().toLowerCase() : undefined, "notifications": undefined, "referrer": undefined, "response": undefined, "view_id": undefined, "title": (document.title) ? document.title : undefined, "url": { "complete": "http://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/", "domain": "superdeporte.es", "hostname": "www.superdeporte.es", "parameters": undefined, "path": "/deportes/futbol/primera-division/valencia-cf/" } }, "product": { "platform": "web" }, "video": { "author": undefined, "origin": undefined, "title": undefined, "type": undefined } }); (function(w,d,s,l,i){ w[l]=w[l]||[]; w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'}); var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:''; j.async=true; j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl; f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-K3F8ZWT'); </script> <script> var adUnit = "sd/deportes/futbol/primera-division/noticia"; var idioma = "es"; </script> <script> if(typeof EPI == "undefined"){ EPI = {}; EPI.gP = function(name){ if(name=(new RegExp('[?&]'+encodeURIComponent(name)+'=([^&]*)')).exec(location.search)) return decodeURIComponent(name[1]); }; EPI.gAW = function(){ var ori = window.orientation; if (Math.abs(window.orientation) === 90) { return screen.width > screen.height ? screen.width:screen.height; } return screen.width; }; EPI.gCV = function(){ var VersionEscritorio_urlPortal = location.hostname; var VersionEscritorio_urlActual = ""+document.location; var VersionEscritorio_cookiesAceptadas = this.cR("VersionEscritoriosSite"); /*if(VersionEscritorio_urlActual.indexOf(VersionEscritorio_urlPortal)>=0)*/ return VersionEscritorio_cookiesAceptadas; /*else return null;*/ }; EPI.eVM = function(){ var cookieVersion = this.gCV(); if( (cookieVersion==null || cookieVersion=='movil') && this.gAW() <= 480) return true; else return false; }; EPI.cR = function(name) { var nameEQ = name + "="; var ca = document.cookie.split(';'); for(var i=0;i < ca.length;i++) { var c = ca[i]; while (c.charAt(0)==' ') c = c.substring(1,c.length); if (c.indexOf(nameEQ) == 0) return unescape( c.substring(nameEQ.length,c.length) ); } return null; }; EPI.cC = function(name,value,days) { if (days) { var date = new Date(); date.setTime(date.getTime()+(days*24*60*60*1000)); var expires = "; expires="+date.toGMTString(); } else var expires = ""; document.cookie = name+"="+escape(value)+expires+";path=/"; }; EPI.cE = function(name) { this.cC(name,"",-1); }; EPI.debug = function(txt){console.debug(txt);};} </script> <script type="text/javascript" src="https://trafico.prensaiberica.es/cmp/min/prensaiberica-es.js"></script> <script> var piTypeOfProduct = "deportes"; // R&A utiliza esta variable para renderizar skins function calcularIdioma(){ if(window.idioma == "ca" || window.idioma == "es" || window.idioma == "de") return window.idioma; if(window.usu_idPortal == 15 || window.usu_idPortal == 32 || window.usu_idPortal == 40) return "ca"; else if(window.usu_idPortal == 19) return "de"; else return "es"; } /*var cmp_script = document.createElement("script"); cmp_script.type = "text/javascript"; cmp_script.src = "https://trafico.prensaiberica.es/cmp/min/prensaiberica-" + calcularIdioma() + ".js"; document.head.appendChild(cmp_script);*/ var googletag = googletag || {}; googletag.cmd = googletag.cmd || []; window.adm_config = { "adUnit" : adUnit, // obligatorio "isMobile" : EPI.eVM(), // obligatorio, cambie 768 por el ancho en el que la web se convierte a m贸vil "libraries" : { "prebid" : true, "apstag" : true } }; </script> <script type="text/javascript" id="gpt-library-pi" src="https://securepubads.g.doubleclick.net/tag/js/gpt.js" async></script> <script type="text/javascript" src="https://trafico.prensaiberica.es/adm/min/prensaiberica.js" async></script> <style> #div-gpt-ad-ldb1>div, #pc-div-gpt-ad_728>div, [data-ads-slot=desktop_header]>div{padding-top:0} #div-gpt-ad-ldb1>div:before, #pc-div-gpt-ad_728>div:before, [data-ads-slot=desktop_header]>div:before{display:none} </style> <script>console.log("equipos-futbol-primera-division");</script> <!-- Enabling PIANO --> <script> (function(src){var a=document.createElement("script");a.type="text/javascript";a.async=true;a.src=src;var b=document.getElementsByTagName("script")[0];b.parentNode.insertBefore(a,b)})("https://experience-eu.piano.io/xbuilder/experience/load?aid=oG9TYqcJpe"); </script> <!-- END Enabling PIANO --> </head> <body class="section"> <div id="div-gpt-ad_int"></div> <div id="pagina"> <header id="schema-organization" itemprop="publisher" itemscope itemtype="https://schema.org/Organization" class="header header--inner"> <meta content="https://estaticos-cdn.superdeporte.es/images/logo-superdeporte.png?id=72633508ca0bb7ed359c" itemprop="image"> <meta content="https://www.superdeporte.es" itemprop="url"> <nav class="tag-bar" data-text="Es noticia:" itemscope itemtype="https://schema.org/SiteNavigationElement"> <a itemprop="url" href="https://www.superdeporte.es/valencia-cf/" target="_blank" class="header--inner" title="Noticias Valencia CF"> <span itemprop="name"> Noticias Valencia CF </span> </a> <a itemprop="url" href="https://www.superdeporte.es/fichajes/" target="_blank" class="header--inner" title="Mercado de Fichajes"> <span itemprop="name"> Mercado de Fichajes </span> </a> <a itemprop="url" href="https://www.superdeporte.es/formula1/" target="_blank" class="header--inner" title="F贸rmula 1"> <span itemprop="name"> F贸rmula 1 </span> </a> </nav> <article class="header--top"> <div id="pmMarketing_1"></div> <button class="main-menu__trigger" title="Secciones"> <i class="i-menu-trigger"></i> </button> <article class="mega-menu-responsive" style="font-size:0;"> <header itemscope itemtype="https://schema.org/Organization"> <meta content="Superdeporte" itemprop="name"> <meta content="https://www.superdeporte.es" itemprop="url"> <div class="mega-menu-responsive__close"> <i class="i-close_gallery"></i> </div> <div class="mega-menu-responsive__options"> <button class="btn-header-search" type="button" data-menu-open="search"> <i class="i-search"></i> </button> </div> </header> <nav class="mega-menu-accordion" itemscope itemtype="https://schema.org/SiteNavigationElement"> <h3 class="mega-menu-accordion__item"> <a href="https://www.superdeporte.es/valencia-cf/" class="mega-menu-accordion__item-link"> Valencia CF </a> <i class="i-arrow-down"></i> </h3> <div class="mega-menu-accordion__content"> <ul> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/futbol/primera-division/calendario-liga/valencia-cf.html" class="header--inner" title="Calendario"> Calendario </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/" class="header--inner" title="Plantilla y estad铆sticas"> Plantilla y estad铆sticas </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/futbol/primera-division/clasificacion-liga.html" class="header--inner" title="Resultados y clasificaci贸n"> Resultados y clasificaci贸n </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/futbol/primera-division/partidos-en-directo.html" class="header--inner" title="En directo"> En directo </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/fotos/valencia-cf/" class="header--inner" title="Galer铆as"> Galer铆as </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/tags/valencia-femenino/" class="header--inner" title="Valencia femenino"> Valencia femenino </a> </li> </ul> </div> <h3 class="mega-menu-accordion__item"> <a href="https://www.superdeporte.es/levante-ud/" class="mega-menu-accordion__item-link"> Levante UD </a> <i class="i-arrow-down"></i> </h3> <div class="mega-menu-accordion__content"> <ul> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/futbol/primera-division/calendario-liga/levante.html" class="header--inner" title="Calendario"> Calendario </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/futbol/primera-division/levante/" class="header--inner" title="Plantilla y estad铆sticas"> Plantilla y estad铆sticas </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/futbol/primera-division/clasificacion-liga.html" class="header--inner" title="Resultados y clasificaci贸n"> Resultados y clasificaci贸n </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/futbol/primera-division/partidos-en-directo.html" class="header--inner" title="En directo"> En directo </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/fotos/levante-ud/" class="header--inner" title="Galer铆as"> Galer铆as </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/tags/levante-femenino/" class="header--inner" title="Levante femenino"> Levante femenino </a> </li> </ul> </div> <h3 class="mega-menu-accordion__item"> <a href="https://www.superdeporte.es/villarreal-cf/" class="mega-menu-accordion__item-link"> Villarreal CF </a> <i class="i-arrow-down"></i> </h3> <div class="mega-menu-accordion__content"> <ul> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/futbol/primera-division/calendario-liga/villarreal.html" class="header--inner" title="Calendario"> Calendario </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/futbol/primera-division/villarreal/" class="header--inner" title="Plantilla y estad铆sticas"> Plantilla y estad铆sticas </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/futbol/primera-division/clasificacion-liga.html" class="header--inner" title="Resultados y clasificaci贸n"> Resultados y clasificaci贸n </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/futbol/primera-division/partidos-en-directo.html" class="header--inner" title="En directo"> En directo </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/tags/villarreal-femenino/" class="header--inner" title="Villarreal femenino"> Villarreal femenino </a> </li> </ul> </div> <h3 class="mega-menu-accordion__item"> <a href="https://www.superdeporte.es/futbol/" class="mega-menu-accordion__item-link"> F煤tbol </a> <i class="i-arrow-down"></i> </h3> <div class="mega-menu-accordion__content"> <ul> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/fichajes/" class="header--inner" title="Fichajes"> Fichajes </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/futbol/primera-division/clasificacion-liga.html" class="header--inner" title="LaLiga EA Sports"> LaLiga EA Sports </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/elche-cf/" class="header--inner" title="Elche CF"> Elche CF </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/futbol/segunda-division/clasificacion-liga.html" class="header--inner" title="LaLiga Hypermotion"> LaLiga Hypermotion </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/futbol/primera-rfef-grupo-2/calendario-liga/" class="header--inner" title="1陋 RFEF"> 1陋 RFEF </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/futbol/segunda-rfef-grupo-5/calendario-liga/" class="header--inner" title="2陋 RFEF"> 2陋 RFEF </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/futbol/tercera-rfef-grupo-6/calendario-liga/" class="header--inner" title="3陋 RFEF"> 3陋 RFEF </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/futbol/preferente-valenciana-grupo-1/" class="header--inner" title="Preferente"> Preferente </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/futbol-femenino/" target="_blank" class="header--inner" title="FINETWORK LIGA F"> FINETWORK LIGA F </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/futbol-base/" class="header--inner" title="F煤tbol base"> F煤tbol base </a> </li> </ul> </div> <h3 class="mega-menu-accordion__item"> <a href="https://www.superdeporte.es/valencia-basket/" class="mega-menu-accordion__item-link"> Valencia BC </a> <i class="i-arrow-down"></i> </h3> <div class="mega-menu-accordion__content"> <ul> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/baloncesto/acb/calendario-liga/valencia-basket.html" class="header--inner" title="Calendario"> Calendario </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/baloncesto/acb/valencia-basket/" class="header--inner" title="Plantilla y estad铆sticas"> Plantilla y estad铆sticas </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/baloncesto/acb/clasificacion-liga.html" class="header--inner" title="Resultados y clasificaci贸n"> Resultados y clasificaci贸n </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/fotos/valencia-basket/" class="header--inner" title="Galer铆as"> Galer铆as </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/baloncesto/liga-femenina/clasificacion-liga.html" class="header--inner" title="Valencia Basket Femenino"> Valencia Basket Femenino </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/lalqueria-del-basket/" class="header--inner" title="L'Alqueria del Basket"> L'Alqueria del Basket </a> </li> </ul> </div> <h3 class="mega-menu-accordion__item"> <a href="https://www.superdeporte.es/baloncesto/" class="mega-menu-accordion__item-link"> Baloncesto </a> <i class="i-arrow-down"></i> </h3> <div class="mega-menu-accordion__content"> <ul> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/baloncesto/acb/clasificacion-liga.html" class="header--inner" title="ACB"> ACB </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/baloncesto/leb-oro/clasificacion-liga.html" class="header--inner" title="LEB Oro"> LEB Oro </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/baloncesto/leb-plata-este/clasificacion-liga.html" class="header--inner" title="LEB Plata"> LEB Plata </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/baloncesto/liga-femenina/clasificacion-liga.html" class="header--inner" title="Liga femenina"> Liga femenina </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/baloncesto/euroliga/calendario-liga/" class="header--inner" title="Euroliga"> Euroliga </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/baloncesto/eurocup/calendario-liga/" class="header--inner" title="Eurocup"> Eurocup </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/deportes/baloncesto/nba/clasificacion-liga.html" class="header--inner" title="NBA"> NBA </a> </li> </ul> </div> <h3 class="mega-menu-accordion__item"> <a href="https://www.superdeporte.es/motor/" class="mega-menu-accordion__item-link"> Motor </a> <i class="i-arrow-down"></i> </h3> <div class="mega-menu-accordion__content"> <ul> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/formula1/" class="header--inner" title="F1"> F1 </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/tags/fernando-alonso/" target="_blank" class="header--inner" title="Fernando Alonso"> Fernando Alonso </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/tags/carlos-sainz/" target="_blank" class="header--inner" title="Carlos Sainz"> Carlos Sainz </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/motogp/" class="header--inner" title="Moto GP"> Moto GP </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/neomotor/" class="header--inner" title="Neomotor"> Neomotor </a> </li> </ul> </div> <h3 class="mega-menu-accordion__item"> <a href="https://www.superdeporte.es/polideportivo/" class="mega-menu-accordion__item-link"> Polideportivo </a> <i class="i-arrow-down"></i> </h3> <div class="mega-menu-accordion__content"> <ul> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/olimpiadas/" class="header--inner" title="Olimpiadas"> Olimpiadas </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/tenis/" class="header--inner" title="Tenis"> Tenis </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/balonmano/" class="header--inner" title="Balonmano"> Balonmano </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/carreras-populares/" class="header--inner" title="Carreras populares"> Carreras populares </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/ciclismo/" class="header--inner" title="Ciclismo"> Ciclismo </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/pilota-valenciana/" class="header--inner" title="Pilota"> Pilota </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/rugby/" class="header--inner" title="Rugby"> Rugby </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/futbol-sala/" class="header--inner" title="F煤tbol Sala"> F煤tbol Sala </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/mas-deporte/" class="header--inner" title="M谩s Deporte"> M谩s Deporte </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/apuestas/" target="_blank" class="header--inner" title="Apuestas deportivas"> Apuestas deportivas </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/be-content/" class="header--inner" title="BeContent"> BeContent </a> </li> </ul> </div> <h3 class="mega-menu-accordion__item"> <a href="https://www.superdeporte.es/opinion/" class="mega-menu-accordion__item-link"> Opini贸n </a> <i class="i-arrow-down"></i> </h3> <div class="mega-menu-accordion__content"> <ul> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/autores/vicent-chilet.html" class="header--inner" title="Vicent Chilet"> Vicent Chilet </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/autores/pablo-leiva.html" class="header--inner" title="Pablo Leiva"> Pablo Leiva </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/autores/gauden-villas.html" target="_blank" class="header--inner" title="Gauden Villas"> Gauden Villas </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/autores/juan-de-dios-crespo.html" class="header--inner" title="Juan de Dios Crespo"> Juan de Dios Crespo </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/autores/toni-hernandez.html" class="header--inner" title="Toni Hern谩ndez"> Toni Hern谩ndez </a> </li> </ul> </div> <h3 class="mega-menu-accordion__item"> <a href="https://www.superdeporte.es/fuera-de-juego/" class="mega-menu-accordion__item-link"> FDJ </a> <i class="i-arrow-down"></i> </h3> <div class="mega-menu-accordion__content"> <ul> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/fuera-de-juego/salud/" class="header--inner" title="Salud"> Salud </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/fuera-de-juego/gente/" class="header--inner" title="Gente"> Gente </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/fuera-de-juego/turismo-valencia/" class="header--inner" title="Turismo Valencia"> Turismo Valencia </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/fuera-de-juego/vivienda-en-valencia/" class="header--inner" title="Vivienda en Valencia"> Vivienda en Valencia </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/fuera-de-juego/empleo-en-valencia/" class="header--inner" title="Empleo en Valencia"> Empleo en Valencia </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/sucesos/" class="header--inner" title="Caso Abierto"> Caso Abierto </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/e-sports/" class="header--inner" title="E-Sports"> E-Sports </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/finanzas-personales/" class="header--inner" title="Finanzas"> Finanzas </a> </li> </ul> </div> <h3 class="mega-menu-accordion__item"> <a href="https://www.superdeporte.es/ocio/" class="mega-menu-accordion__item-link"> OCIO </a> <i class="i-arrow-down"></i> </h3> <div class="mega-menu-accordion__content"> <ul> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/ocio/cine/" class="header--inner" title="Cine"> Cine </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/ocio/tv/" class="header--inner" title="Televisi贸n"> Televisi贸n </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/ocio/agenda/" class="header--inner" title="Agenda"> Agenda </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/ocio/gastronomia/" class="header--inner" title="Gastronom铆a"> Gastronom铆a </a> </li> <li itemprop="name"> <a itemprop="url" href="https://www.superdeporte.es/ocio/planes/" class="header--inner" title="Planes"> Planes </a> </li> <li itemprop="name"> <a itemprop="url" href="https://tufoto.superdeporte.es/" class="header--inner" title="Tu foto"> Tu foto </a> </li> </ul> </div> <h3 class="mega-menu-accordion__item"> <a href="https://val.superdeporte.es/" class="mega-menu-accordion__item-link"> EN VALENCI脌 </a> </h3> <div class="mega-menu-accordion__content"> </div> <h3 class=""></h3> <div class="mega-menu-sidebar" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement"> <nav class="mega-menu-sidebar__list" data-navigation-id="2158"> <ul> <li itemprop="name"> <span class="menu-default"><span>Multimedia</span></span> <ul class="mega-menu-sidebar__sublist"> <li itemprop="name"> <a class="menu-default" href="https://www.superdeporte.es/videos/" itemprop="url"><span>V铆deos</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://www.superdeporte.es/fotos/" itemprop="url"><span>Galer铆as</span></a> </li> </ul> </li> <li itemprop="name"> <span class="menu-default"><span>Servicios</span></span> <ul class="mega-menu-sidebar__sublist"> <li itemprop="name"> <a class="menu-default" href="https://tiempo.superdeporte.es/" itemprop="url"><span>Tiempo</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://www.superdeporte.es/newsletters/" itemprop="url"><span>Newsletter</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://www.superdeporte.es/hemeroteca/" itemprop="url"><span>Hemeroteca</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://www.superdeporte.es/lo-mas-visto/" itemprop="url"><span>Lo m谩s visto</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://www.superdeporte.es/mapaweb/" itemprop="url"><span>Mapa web</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://www.superdeporte.es/rss.html" itemprop="url"><span>RSS</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://www.superdeporte.es/tags/" itemprop="url"><span>Tags</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://www.elperiodico.com/es/loteria-navidad/" itemprop="url"><span>Loter铆a de Navidad 2024</span></a> </li> </ul> </li> <li itemprop="name"> <span class="menu-default"><span>Clasificados</span></span> <ul class="mega-menu-sidebar__sublist"> <li itemprop="name"> <a class="menu-default" href="https://www.tucasa.com/compra-venta/viviendas/valencia/?r=&amp;idz=0046" itemprop="url"><span>Vivienda Valencia</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://www.tucasa.com/alquiler/viviendas/valencia/?r=&amp;idz=0046" itemprop="url"><span>Alquiler Valencia</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://www.iberempleos.es/ofertas-empleo/" itemprop="url"><span>Iberempleos.es</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://ocasion.neomotor.com" itemprop="url"><span>Neomotor Ocasi贸n</span></a> </li> </ul> </li> </ul> </nav> <h3 class="rrss rrss--mega-menu-sidebar mega-menu-accordion__item"> <span>S铆guenos en redes sociales:</span> </h3> <div class="rrss rrss--mega-menu-sidebar mega-menu-accordion__content"> <ul class="rrss__list"> <li class="rrss__item"> <a href="https://www.facebook.com/superdeporte/" title="S铆guenos en Facebook"> <i class="i-facebook"></i> </a> </li> <li class="rrss__item rrss__item--twitter"> <a href="https://twitter.com/superdeporte_es" title="S铆guenos en Twitter"> <i class="i-twitter"></i> </a> </li> <li class="rrss__item"> <a href="https://www.instagram.com/superdeporte.es" title="S铆guenos en Instagram"> <i class="i-instagram"></i> </a> </li> </ul> </div> </div> <div class="mega-menu-accordion__content" data-hide-for-not-logged-users></div> </nav> </article> <nav class="section-menu" itemscope itemtype="https://schema.org/SiteNavigationElement"></nav> <button class="btn-header-search" type="button" data-menu-open="search"> <i class="i-search"></i> </button> <div class="menu--user"> <button type="button" class="menu--user__close" aria-label="cerrar" data-menu-close> <i class="i-close_gallery"></i> </button> </div> <a href="https://micuenta.superdeporte.es/tp/login" data-login-url="https://micuenta.superdeporte.es/tp/login" data-profile-url="https://micuenta.superdeporte.es/tp/perfil" rel="nofollow" class="btn-header-user" data-menu-open="user"> <i class="i-user"></i> </a> <script type="text/html" id="menu--user__logged"> <ul> <li><a href="https://micuenta.superdeporte.es/suscripcion/galeria/" class="be-premium" rel="nofollow">Suscr&iacute;bete <li><a href="https://micuenta.superdeporte.es/tp/perfil" rel="nofollow" class="">Perfil <li><a href="https://micuenta.superdeporte.es/tp/perfil/favoritos" rel="nofollow" class="">Noticias guardadas <li><a href="https://micuenta.superdeporte.es/tp/logout" class="close" rel="nofollow">Cerrar sesi&oacute;n </script> <script type="text/html" id="menu--user__subscriber"> <ul> <li><a href="https://micuenta.superdeporte.es/tp/perfil" rel="nofollow" class="">Perfil <li><a href="https://micuenta.superdeporte.es/tp/perfil/favoritos" rel="nofollow" class="">Noticias guardadas <li><a href="https://micuenta.superdeporte.es/tp/logout" rel="nofollow" class="close">Cerrar sesi&oacute;n </script> <article class="mega-menu" style="font-size:0;"> <div class="mega-menu__medium"> <button class="mega-menu__close"> <i class="i-close_gallery"></i> </button> <div class="mega-menu__sections"> <nav class="mega-menu-item" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement"> <ul class="mega-menu-item__list"> <li class="mega-menu-item__title" itemprop="name"> <a href="https://www.superdeporte.es/valencia-cf/" itemprop="url"> Valencia CF <i class="i-arrow-right"></i> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/futbol/primera-division/calendario-liga/valencia-cf.html" itemprop="url"> <span>Calendario</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/" itemprop="url"> <span>Plantilla y estad铆sticas</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/futbol/primera-division/clasificacion-liga.html" itemprop="url"> <span>Resultados y clasificaci贸n</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/futbol/primera-division/partidos-en-directo.html" itemprop="url"> <span>En directo</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/fotos/valencia-cf/" itemprop="url"> <span>Galer铆as</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/tags/valencia-femenino/" itemprop="url"> <span>Valencia femenino</span> </a> </li> </ul> </nav> <nav class="mega-menu-item" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement"> <ul class="mega-menu-item__list"> <li class="mega-menu-item__title" itemprop="name"> <a href="https://www.superdeporte.es/levante-ud/" itemprop="url"> Levante UD <i class="i-arrow-right"></i> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/futbol/primera-division/calendario-liga/levante.html" itemprop="url"> <span>Calendario</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/futbol/primera-division/levante/" itemprop="url"> <span>Plantilla y estad铆sticas</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/futbol/primera-division/clasificacion-liga.html" itemprop="url"> <span>Resultados y clasificaci贸n</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/futbol/primera-division/partidos-en-directo.html" itemprop="url"> <span>En directo</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/fotos/levante-ud/" itemprop="url"> <span>Galer铆as</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/tags/levante-femenino/" itemprop="url"> <span>Levante femenino</span> </a> </li> </ul> </nav> <nav class="mega-menu-item" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement"> <ul class="mega-menu-item__list"> <li class="mega-menu-item__title" itemprop="name"> <a href="https://www.superdeporte.es/villarreal-cf/" itemprop="url"> Villarreal CF <i class="i-arrow-right"></i> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/futbol/primera-division/calendario-liga/villarreal.html" itemprop="url"> <span>Calendario</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/futbol/primera-division/villarreal/" itemprop="url"> <span>Plantilla y estad铆sticas</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/futbol/primera-division/clasificacion-liga.html" itemprop="url"> <span>Resultados y clasificaci贸n</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/futbol/primera-division/partidos-en-directo.html" itemprop="url"> <span>En directo</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/tags/villarreal-femenino/" itemprop="url"> <span>Villarreal femenino</span> </a> </li> </ul> </nav> <nav class="mega-menu-item" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement"> <ul class="mega-menu-item__list"> <li class="mega-menu-item__title" itemprop="name"> <a href="https://www.superdeporte.es/futbol/" itemprop="url"> F煤tbol <i class="i-arrow-right"></i> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/fichajes/" itemprop="url"> <span>Fichajes</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/futbol/primera-division/clasificacion-liga.html" itemprop="url"> <span>LaLiga EA Sports</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/elche-cf/" itemprop="url"> <span>Elche CF</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/futbol/segunda-division/clasificacion-liga.html" itemprop="url"> <span>LaLiga Hypermotion</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/futbol/primera-rfef-grupo-2/calendario-liga/" itemprop="url"> <span>1陋 RFEF</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/futbol/segunda-rfef-grupo-5/calendario-liga/" itemprop="url"> <span>2陋 RFEF</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/futbol/tercera-rfef-grupo-6/calendario-liga/" itemprop="url"> <span>3陋 RFEF</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/futbol/preferente-valenciana-grupo-1/" itemprop="url"> <span>Preferente</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/futbol-femenino/" itemprop="url"> <span>FINETWORK LIGA F</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/futbol-base/" itemprop="url"> <span>F煤tbol base</span> </a> </li> </ul> </nav> <nav class="mega-menu-item" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement"> <ul class="mega-menu-item__list"> <li class="mega-menu-item__title" itemprop="name"> <a href="https://www.superdeporte.es/valencia-basket/" itemprop="url"> Valencia BC <i class="i-arrow-right"></i> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/baloncesto/acb/calendario-liga/valencia-basket.html" itemprop="url"> <span>Calendario</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/baloncesto/acb/valencia-basket/" itemprop="url"> <span>Plantilla y estad铆sticas</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/baloncesto/acb/clasificacion-liga.html" itemprop="url"> <span>Resultados y clasificaci贸n</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/fotos/valencia-basket/" itemprop="url"> <span>Galer铆as</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/baloncesto/liga-femenina/clasificacion-liga.html" itemprop="url"> <span>Valencia Basket Femenino</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/lalqueria-del-basket/" itemprop="url"> <span>L'Alqueria del Basket</span> </a> </li> </ul> </nav> <nav class="mega-menu-item" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement"> <ul class="mega-menu-item__list"> <li class="mega-menu-item__title" itemprop="name"> <a href="https://www.superdeporte.es/baloncesto/" itemprop="url"> Baloncesto <i class="i-arrow-right"></i> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/baloncesto/acb/clasificacion-liga.html" itemprop="url"> <span>ACB</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/baloncesto/leb-oro/clasificacion-liga.html" itemprop="url"> <span>LEB Oro</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/baloncesto/leb-plata-este/clasificacion-liga.html" itemprop="url"> <span>LEB Plata</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/baloncesto/liga-femenina/clasificacion-liga.html" itemprop="url"> <span>Liga femenina</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/baloncesto/euroliga/calendario-liga/" itemprop="url"> <span>Euroliga</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/baloncesto/eurocup/calendario-liga/" itemprop="url"> <span>Eurocup</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/deportes/baloncesto/nba/clasificacion-liga.html" itemprop="url"> <span>NBA</span> </a> </li> </ul> </nav> <nav class="mega-menu-item" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement"> <ul class="mega-menu-item__list"> <li class="mega-menu-item__title" itemprop="name"> <a href="https://www.superdeporte.es/motor/" itemprop="url"> Motor <i class="i-arrow-right"></i> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/formula1/" itemprop="url"> <span>F1</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/tags/fernando-alonso/" itemprop="url"> <span>Fernando Alonso</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/tags/carlos-sainz/" itemprop="url"> <span>Carlos Sainz</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/motogp/" itemprop="url"> <span>Moto GP</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/neomotor/" itemprop="url"> <span>Neomotor</span> </a> </li> </ul> </nav> <nav class="mega-menu-item" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement"> <ul class="mega-menu-item__list"> <li class="mega-menu-item__title" itemprop="name"> <a href="https://www.superdeporte.es/polideportivo/" itemprop="url"> Polideportivo <i class="i-arrow-right"></i> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/olimpiadas/" itemprop="url"> <span>Olimpiadas</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/tenis/" itemprop="url"> <span>Tenis</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/balonmano/" itemprop="url"> <span>Balonmano</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/carreras-populares/" itemprop="url"> <span>Carreras populares</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/ciclismo/" itemprop="url"> <span>Ciclismo</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/pilota-valenciana/" itemprop="url"> <span>Pilota</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/rugby/" itemprop="url"> <span>Rugby</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/futbol-sala/" itemprop="url"> <span>F煤tbol Sala</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/mas-deporte/" itemprop="url"> <span>M谩s Deporte</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/apuestas/" itemprop="url"> <span>Apuestas deportivas</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/be-content/" itemprop="url"> <span>BeContent</span> </a> </li> </ul> </nav> <nav class="mega-menu-item" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement"> <ul class="mega-menu-item__list"> <li class="mega-menu-item__title" itemprop="name"> <a href="https://www.superdeporte.es/opinion/" itemprop="url"> Opini贸n <i class="i-arrow-right"></i> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/autores/vicent-chilet.html" itemprop="url"> <span>Vicent Chilet</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/autores/pablo-leiva.html" itemprop="url"> <span>Pablo Leiva</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/autores/gauden-villas.html" itemprop="url"> <span>Gauden Villas</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/autores/juan-de-dios-crespo.html" itemprop="url"> <span>Juan de Dios Crespo</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/autores/toni-hernandez.html" itemprop="url"> <span>Toni Hern谩ndez</span> </a> </li> </ul> </nav> <nav class="mega-menu-item" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement"> <ul class="mega-menu-item__list"> <li class="mega-menu-item__title" itemprop="name"> <a href="https://www.superdeporte.es/fuera-de-juego/" itemprop="url"> FDJ <i class="i-arrow-right"></i> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/fuera-de-juego/salud/" itemprop="url"> <span>Salud</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/fuera-de-juego/gente/" itemprop="url"> <span>Gente</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/fuera-de-juego/turismo-valencia/" itemprop="url"> <span>Turismo Valencia</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/fuera-de-juego/vivienda-en-valencia/" itemprop="url"> <span>Vivienda en Valencia</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/fuera-de-juego/empleo-en-valencia/" itemprop="url"> <span>Empleo en Valencia</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/sucesos/" itemprop="url"> <span>Caso Abierto</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/e-sports/" itemprop="url"> <span>E-Sports</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/finanzas-personales/" itemprop="url"> <span>Finanzas</span> </a> </li> </ul> </nav> <nav class="mega-menu-item" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement"> <ul class="mega-menu-item__list"> <li class="mega-menu-item__title" itemprop="name"> <a href="https://www.superdeporte.es/ocio/" itemprop="url"> OCIO <i class="i-arrow-right"></i> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/ocio/cine/" itemprop="url"> <span>Cine</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/ocio/tv/" itemprop="url"> <span>Televisi贸n</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/ocio/agenda/" itemprop="url"> <span>Agenda</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/ocio/gastronomia/" itemprop="url"> <span>Gastronom铆a</span> </a> </li> <li itemprop="name"> <a href="https://www.superdeporte.es/ocio/planes/" itemprop="url"> <span>Planes</span> </a> </li> <li itemprop="name"> <a href="https://tufoto.superdeporte.es/" itemprop="url"> <span>Tu foto</span> </a> </li> </ul> </nav> <nav class="mega-menu-item" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement"> <ul class="mega-menu-item__list"> <li class="mega-menu-item__title" itemprop="name"> <a href="https://val.superdeporte.es/" itemprop="url"> EN VALENCI脌 <i class="i-arrow-right"></i> </a> </li> </ul> </nav> </div> <div class="mega-menu-sidebar" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement"> <nav class="mega-menu-sidebar__list" data-navigation-id="2158"> <ul> <li itemprop="name"> <span class="menu-default"><span>Multimedia</span></span> <ul class="mega-menu-sidebar__sublist"> <li itemprop="name"> <a class="menu-default" href="https://www.superdeporte.es/videos/" itemprop="url"><span>V铆deos</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://www.superdeporte.es/fotos/" itemprop="url"><span>Galer铆as</span></a> </li> </ul> </li> <li itemprop="name"> <span class="menu-default"><span>Servicios</span></span> <ul class="mega-menu-sidebar__sublist"> <li itemprop="name"> <a class="menu-default" href="https://tiempo.superdeporte.es/" itemprop="url"><span>Tiempo</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://www.superdeporte.es/newsletters/" itemprop="url"><span>Newsletter</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://www.superdeporte.es/hemeroteca/" itemprop="url"><span>Hemeroteca</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://www.superdeporte.es/lo-mas-visto/" itemprop="url"><span>Lo m谩s visto</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://www.superdeporte.es/mapaweb/" itemprop="url"><span>Mapa web</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://www.superdeporte.es/rss.html" itemprop="url"><span>RSS</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://www.superdeporte.es/tags/" itemprop="url"><span>Tags</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://www.elperiodico.com/es/loteria-navidad/" itemprop="url"><span>Loter铆a de Navidad 2024</span></a> </li> </ul> </li> <li itemprop="name"> <span class="menu-default"><span>Clasificados</span></span> <ul class="mega-menu-sidebar__sublist"> <li itemprop="name"> <a class="menu-default" href="https://www.tucasa.com/compra-venta/viviendas/valencia/?r=&amp;idz=0046" itemprop="url"><span>Vivienda Valencia</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://www.tucasa.com/alquiler/viviendas/valencia/?r=&amp;idz=0046" itemprop="url"><span>Alquiler Valencia</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://www.iberempleos.es/ofertas-empleo/" itemprop="url"><span>Iberempleos.es</span></a> </li> <li itemprop="name"> <a class="menu-default" href="https://ocasion.neomotor.com" itemprop="url"><span>Neomotor Ocasi贸n</span></a> </li> </ul> </li> </ul> </nav> <div class="rrss rrss--mega-menu-sidebar"> <p>S铆guenos en redes sociales:</p> <ul class="rrss__list"> <li class="rrss__item"> <a href="https://www.facebook.com/superdeporte/" title="S铆guenos en Facebook"> <i class="i-facebook"></i> </a> </li> <li class="rrss__item rrss__item--twitter"> <a href="https://twitter.com/superdeporte_es" title="S铆guenos en Twitter"> <i class="i-twitter"></i> </a> </li> <li class="rrss__item"> <a href="https://www.instagram.com/superdeporte.es" title="S铆guenos en Instagram"> <i class="i-instagram"></i> </a> </li> </ul> </div> </div> </div> </article> <a href="https://www.superdeporte.es/" class="header__logo-link "> <img src="https://estaticos-cdn.superdeporte.es/images/logo-superdeporte.png?id=72633508ca0bb7ed359c" alt="Superdeporte"> </a> </article> <article class="header--medium"> <h2> <a href="https://www.superdeporte.es/" itemtype="https://schema.org/ImageObject" itemscope itemprop="logo"> <meta content="Superdeporte" itemprop="name"> <img src="https://estaticos-cdn.superdeporte.es/images/logo-superdeporte.png?id=72633508ca0bb7ed359c" alt="Superdeporte" itemprop="contentUrl"> </a> </h2> </article> <article class="header--down"> <div class="wrapper fullwidth"> <button class="main-menu__trigger" title="Secciones"> <i class="i-menu-trigger"></i> <span class="main-menu__title">Secciones</span> </button> <nav class="inner-section-menu" itemscope itemtype="https://schema.org/SiteNavigationElement"> <a class="menu-default " itemprop="url" href="/deportes/futbol/primera-division/"> <span class="menu-default__item" itemprop="name">Primera Divisi贸n - LaLiga EA Sports</span> </a> <a class="menu-default " itemprop="url" href="/deportes/futbol/primera-division/equipos.html"> <span class="menu-default__item" itemprop="name">equipos</span> </a> <a class="menu-default " itemprop="url" href=""> <span class="menu-default__item" itemprop="name">Valencia CF</span> </a> </nav> </div> </article> <div class="search-layer"> <button class="search-layer__close"> <i class="i-close_gallery"></i> </button> <div class="search-layer__box"> <form action="https://www.superdeporte.es/buscador" method="get"> <button><i class="i-search"></i></button> <input type="text" name="text" placeholder="Introduce el t茅rmino a buscar" autofocus="autofocus"> </form> </div> </div> </header> <!-- publicidad --> <div id="pc-div-gpt-ad_flotante"></div> <div id="movil-div-gpt-ad_flotante"></div> <!-- SKYS --> <div class="sky"> <div class="sky__item sky__item--left no-baldomero" data-ad-position-baldomero="skyizda-3"> <div id="pc-div-gpt-ad_skyizda"></div> <div id="movil-div-gpt-ad_skyizda-3" class="mobile-only"></div> </div> <div class="sky__item sky__item--right no-baldomero" data-ad-position-baldomero="skydcha-3"> <div id="pc-div-gpt-ad_skydcha"></div> <div id="movil-div-gpt-ad_skydcha-3" class="mobile-only"></div> </div> </div> <!-- / SKYS --> <div class="contenedor commercial-up-full" id="Publicidad1"> <div id="div-gpt-ad_728"></div> </div> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "SportsTeam", "name": "Valencia CF", "coach": { "@type": "Person", "name": "Rub茅n Baraja" }, "logo":{ "@type":"ImageObject", "url":"https://www.superdeporte.es/deportes/ed/img/equipos/191/escudo_med.jpg" }, "athlete": [ { "@type": "Person", "name": "Jaume Dom茅nech", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/jaume-domenech.html", "jobTitle": "portero" } , { "@type": "Person", "name": "Stole Dimitrievski", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/stole-dimitrievski.html", "jobTitle": "portero" } , { "@type": "Person", "name": "Giorgi Mamardashvili", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/giorgi-mamardashvili.html", "jobTitle": "portero" } , { "@type": "Person", "name": "Ra煤l Jim茅nez", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/raul-jimenez.html", "jobTitle": "portero" } , { "@type": "Person", "name": "Max Caufriez", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/max-caufriez.html", "jobTitle": "defensa" } , { "@type": "Person", "name": "Cristhian Mosquera", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/cristhian-mosquera.html", "jobTitle": "defensa" } , { "@type": "Person", "name": "Mouctar Diakhaby", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/mouctar-diakhaby.html", "jobTitle": "defensa" } , { "@type": "Person", "name": "Hugo Guillam贸n", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/hugo-guillamon.html", "jobTitle": "defensa" } , { "@type": "Person", "name": "Thierry Correia", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/thierry-correia.html", "jobTitle": "defensa" } , { "@type": "Person", "name": "Jos茅 Gay谩", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/jose-gaya.html", "jobTitle": "defensa" } , { "@type": "Person", "name": "C茅sar T谩rrega", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/cesar-tarrega.html", "jobTitle": "defensa" } , { "@type": "Person", "name": "Dimitri Foulquier", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/dimitri-foulquier.html", "jobTitle": "defensa" } , { "@type": "Person", "name": "Jes煤s V谩zquez", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/jesus-vazquez.html", "jobTitle": "defensa" } , { "@type": "Person", "name": "Yarek Gasiorowski", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/yarek-gasiorowski.html", "jobTitle": "defensa" } , { "@type": "Person", "name": "Iker C贸rdoba", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/iker-cordoba.html", "jobTitle": "defensa" } , { "@type": "Person", "name": "Rodrigo Abajas", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/rodrigo-abajas.html", "jobTitle": "defensa" } , { "@type": "Person", "name": "Enzo Barrenechea", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/enzo-barrenechea.html", "jobTitle": "centrocampista" } , { "@type": "Person", "name": "Sergi Can贸s", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/sergi-canos.html", "jobTitle": "delantero" } , { "@type": "Person", "name": "Javier Guerra", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/javier-guerra.html", "jobTitle": "centrocampista" } , { "@type": "Person", "name": "Andr茅 Almeida", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/andre-almeida.html", "jobTitle": "centrocampista" } , { "@type": "Person", "name": "Pepelu", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/pepelu.html", "jobTitle": "centrocampista" } , { "@type": "Person", "name": "Fran P茅rez", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/fran-perez.html", "jobTitle": "delantero" } , { "@type": "Person", "name": "Ali Fadal", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/ali-fadal.html", "jobTitle": "centrocampista" } , { "@type": "Person", "name": "Mart铆n Tej贸n Fauli", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/martin-tejon-fauli.html", "jobTitle": "centrocampista" } , { "@type": "Person", "name": "Hugo Duro", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/hugo-duro.html", "jobTitle": "delantero" } , { "@type": "Person", "name": "Rafa Mir", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/rafa-mir.html", "jobTitle": "delantero" } , { "@type": "Person", "name": "Diego L贸pez", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/diego-lopez.html", "jobTitle": "delantero" } , { "@type": "Person", "name": "Dani G贸mez", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/dani-gomez.html", "jobTitle": "delantero" } , { "@type": "Person", "name": "Luis Rioja", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/luis-rioja.html", "jobTitle": "delantero" } , { "@type": "Person", "name": "David Otorbi", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/david-otorbi.html", "jobTitle": "delantero" } , { "@type": "Person", "name": "German Valera", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/german-valera.html", "jobTitle": "delantero" } , { "@type": "Person", "name": "Warren Madrigal", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/warren-madrigal.html", "jobTitle": "delantero" } , { "@type": "Person", "name": "Ismael", "url":"https://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/.html", "jobTitle": "delantero" } ] } </script> <div class="depcontenido"> <div> <div class="depcolumnaizda"> <div class="rrss rrss--share"> <ul class="rrss__list"> <li class="rrss__item"> <a href="https://www.facebook.com/sharer/sharer.php?u=http://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/" target="_blank" title="Compartir en Facebook" rel="nofollow"> <i class="i-facebook"></i> </a> </li> <li class="rrss__item rrss__item--twitter"> <a href="https://twitter.com/intent/tweet?text=http://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/" target="_blank" title="Compartir en Twitter" rel="nofollow"> <i class="i-twitter"></i> </a> </li> <li class="rrss__item rrss__item--whatsapp no-desktop"> <a href="https://api.whatsapp.com/send?text=Valencia CF: Plantilla, jugadores y directos de Valencia CF en Primera Divisi贸n - LaLiga EA Sports: http://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/" target="_blank" title="Compartir en Whatsapp" rel="nofollow"> <i class="i-whatsapp"></i> </a> </li> <li class="rrss__item"> <a href="mailto:?subject=Valencia CF: Plantilla, jugadores y directos de Valencia CF en Primera Divisi贸n - LaLiga EA Sports&body=http://www.superdeporte.es/deportes/futbol/primera-division/valencia-cf/" target="_blank" title="Compartir por correo" rel="nofollow"> <i class="i-mail"></i> </a> </li> </ul> </div> <div class="fragmentoSportTeam"> <div class="deptitular"> <h1>Valencia CF en Primera Divisi贸n - LaLiga EA Sports</h1> </div> <div class="tablaresultados escudos_equipos"> <div id="navcontainerequipos1" class="navcontainer_ficha"> <ul id="navlistequipos1"> <li class=""> <a target="_top" class="geca_enlace_equipo" href="../barcelona/" title="Ver equipo"><img src="/deportes/ed/img/equipos/178/escudo_peq.jpg" alt="Barcelona" title="Barcelona"></a> </li> <li class=""> <a target="_top" class="geca_enlace_equipo" href="../real-madrid/" title="Ver equipo"><img src="/deportes/ed/img/equipos/186/escudo_peq.jpg" alt="Real Madrid" title="Real Madrid"></a> </li> <li class=""> <a target="_top" class="geca_enlace_equipo" href="../atletico-de-madrid/" title="Ver equipo"><img src="/deportes/ed/img/equipos/175/escudo_peq.gif" alt="Atl茅tico de Madrid" title="Atl茅tico de Madrid"></a> </li> <li class=""> <a target="_top" class="geca_enlace_equipo" href="../athletic-club/" title="Ver equipo"><img src="/deportes/ed/img/equipos/174/escudo_peq.jpg" alt="Athletic Club" title="Athletic Club"></a> </li> <li class=""> <a target="_top" class="geca_enlace_equipo" href="../villarreal/" title="Ver equipo"><img src="/deportes/ed/img/equipos/449/escudo_peq.jpg" alt="Villarreal" title="Villarreal"></a> </li> <li class=""> <a target="_top" class="geca_enlace_equipo" href="../mallorca/" title="Ver equipo"><img src="/deportes/ed/img/equipos/181/escudo_peq.jpg" alt="Mallorca" title="Mallorca"></a> </li> <li class=""> <a target="_top" class="geca_enlace_equipo" href="../osasuna/" title="Ver equipo"><img src="/deportes/ed/img/equipos/450/escudo_peq.jpg" alt="Osasuna" title="Osasuna"></a> </li> <li class=""> <a target="_top" class="geca_enlace_equipo" href="../girona/" title="Ver equipo"><img src="/deportes/ed/img/equipos/2893/escudo_peq.jpeg" alt="Girona" title="Girona"></a> </li> <li class=""> <a target="_top" class="geca_enlace_equipo" href="../real-sociedad/" title="Ver equipo"><img src="/deportes/ed/img/equipos/188/escudo_peq.jpg" alt="Real Sociedad" title="Real Sociedad"></a> </li> <li class=""> <a target="_top" class="geca_enlace_equipo" href="../real-betis/" title="Ver equipo"><img src="/deportes/ed/img/equipos/185/escudo_peq.jpeg" alt="Real Betis" title="Real Betis"></a> </li> <li class=""> <a target="_top" class="geca_enlace_equipo" href="../sevilla/" title="Ver equipo"><img src="/deportes/ed/img/equipos/179/escudo_peq.jpg" alt="Sevilla" title="Sevilla"></a> </li> <li class=""> <a target="_top" class="geca_enlace_equipo" href="../celta-de-vigo/" title="Ver equipo"><img src="/deportes/ed/img/equipos/176/escudo_peq.jpg" alt="Celta de Vigo" title="Celta de Vigo"></a> </li> <li class=""> <a target="_top" class="geca_enlace_equipo" href="../rayo-vallecano/" title="Ver equipo"><img src="/deportes/ed/img/equipos/184/escudo_peq.jpg" alt="Rayo Vallecano" title="Rayo Vallecano"></a> </li> <li class=""> <a target="_top" class="geca_enlace_equipo" href="../las-palmas/" title="Ver equipo"><img src="/deportes/ed/img/equipos/407/escudo_peq.jpg" alt="Las Palmas" title="Las Palmas"></a> </li> <li class=""> <a target="_top" class="geca_enlace_equipo" href="../leganes/" title="Ver equipo"><img src="/deportes/ed/img/equipos/957/escudo_peq.jpg" alt="Legan茅s" title="Legan茅s"></a> </li> <li class=""> <a target="_top" class="geca_enlace_equipo" href="../alaves/" title="Ver equipo"><img src="/deportes/ed/img/equipos/173/escudo_peq.jpeg" alt="Alav茅s" title="Alav茅s"></a> </li> <li class=""> <a target="_top" class="geca_enlace_equipo" href="../getafe/" title="Ver equipo"><img src="/deportes/ed/img/equipos/1450/escudo_peq.jpg" alt="Getafe" title="Getafe"></a> </li> <li class=""> <a target="_top" class="geca_enlace_equipo" href="../espanyol/" title="Ver equipo"><img src="/deportes/ed/img/equipos/177/escudo_peq.jpg" alt="Espanyol" title="Espanyol"></a> </li> <li class="submenuselectequipos1"> <a target="_top" class="geca_enlace_equipo" href="../valencia-cf/" title="Ver equipo"><img src="/deportes/ed/img/equipos/191/escudo_peq.jpg" alt="Valencia CF" title="Valencia CF"></a> </li> <li class=""> <a target="_top" class="geca_enlace_equipo" href="../real-valladolid/" title="Ver equipo"><img src="/deportes/ed/img/equipos/192/escudo_peq.jpeg" alt="Real Valladolid" title="Real Valladolid"></a> </li> </ul> </div> <!-- init: nuevo bloque --> <div class="equipo"> <div class="datos"> <div class="datos__titulo titulo--border-bottom"> <h3>El Club</h3> </div> <div class="datos-info"> <div class="datos-info__img"> <img src="/deportes/ed/img/equipos/191/escudo_med.jpg">Valencia CF </div> <div class="datos-info__lista"> <ul> <li>Presidente <br> <strong>Lay Hoon Chan</strong></li> <li>Entrenador <br> <strong>Rub茅n Baraja</strong></li> <li>A帽o de fundaci贸n <br> <strong>1919</strong></li> <li>Web <br> <a href="https://www.valenciacf.es" target="_blank">www.valenciacf.es</a></li> </ul> </div> </div> </div> <div class="estadio"> <div class="estadio__titulo titulo--border-bottom"> <h3>Mestalla</h3> </div> <div class="estadio-info"> <div class="estadio-info__img"> <img src="/deportes/ed/img/equipos/191/estadio.jpg"> </div> <div class="estadio-info__lista"> <ul> <li>Aforo <br> <strong>56000</strong></li> <li>Direcci贸n <br> <strong>C/ Pintor Monle贸n, 446023, Valencia</strong></li> </ul> </div> </div> </div> </div> <!-- end: nuevo bloque --> <div class="titulo--border-bottom"> <h3>PLANTILLA 2024-2025</h3> </div> <img src="/deportes/ed/img/equipos/191/plantilla.jpeg" class="foto_plantilla" width="637"> <div class="tablas_a_2_cols tabla--alt"> <div id="tablaresultados" class="tablaresultados tablas_ados"> <table id="myTable2" summary="Clasificaci贸n" class="img_none"> <thead> <tr> <th scope="col"></th> <th scope="col" class="textoizda"><a href="#" title="JUGADOR">JUGADOR</a></th> <th scope="col"><a href="#" title="PUESTO">PUESTO</a></th> <th scope="col"><a href="#" title="EDAD">EDAD</a></th> <th style="display:none" scope="col"><a href="#" title="POSICI贸N">POSICI贸N</a></th> </tr> </thead> <tbody> <tr class="par" > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">1</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/jaume-domenech.html" title="Ver jugador"><img src="/deportes/ed/img/equipos/191/116732_peq.jpg" alt="Jaume Dom茅nech" title="Jaume Dom茅nech" width="20" height="21">&nbsp;Jaume Dom茅nech</a></td> <td class="textocentroclaro">portero</td> <td class="textocentroclaro">34</td> </tr> <tr > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">13</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/stole-dimitrievski.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="Stole Dimitrievski" title="Stole Dimitrievski" width="20" height="21">&nbsp;Stole Dimitrievski</a></td> <td class="textocentroclaro">portero</td> <td class="textocentroclaro">30</td> </tr> <tr class="par" > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">25</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/giorgi-mamardashvili.html" title="Ver jugador"><img src="/deportes/ed/img/equipos/191/449027_peq.jpeg" alt="Giorgi Mamardashvili" title="Giorgi Mamardashvili" width="20" height="21">&nbsp;Giorgi Mamardashvili</a></td> <td class="textocentroclaro">portero</td> <td class="textocentroclaro">24</td> </tr> <tr > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">34</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/raul-jimenez.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="Ra煤l Jim茅nez" title="Ra煤l Jim茅nez" width="20" height="21">&nbsp;Ra煤l Jim茅nez</a></td> <td class="textocentroclaro">portero</td> <td class="textocentroclaro">18</td> </tr> <tr class="par" > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">2</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/max-caufriez.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="Max Caufriez" title="Max Caufriez" width="20" height="21">&nbsp;Max Caufriez</a></td> <td class="textocentroclaro">defensa</td> <td class="textocentroclaro">27</td> </tr> <tr > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">3</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/cristhian-mosquera.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="Cristhian Mosquera" title="Cristhian Mosquera" width="20" height="21">&nbsp;Cristhian Mosquera</a></td> <td class="textocentroclaro">defensa</td> <td class="textocentroclaro">20</td> </tr> <tr class="par" > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">4</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/mouctar-diakhaby.html" title="Ver jugador"><img src="/deportes/ed/img/equipos/191/208135_peq.jpeg" alt="Mouctar Diakhaby" title="Mouctar Diakhaby" width="20" height="21">&nbsp;Mouctar Diakhaby</a></td> <td class="textocentroclaro">defensa</td> <td class="textocentroclaro">27</td> </tr> <tr > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">6</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/hugo-guillamon.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="Hugo Guillam贸n" title="Hugo Guillam贸n" width="20" height="21">&nbsp;Hugo Guillam贸n</a></td> <td class="textocentroclaro">defensa</td> <td class="textocentroclaro">24</td> </tr> <tr class="par" > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">12</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/thierry-correia.html" title="Ver jugador"><img src="/deportes/ed/img/equipos/191/222629_peq.jpg" alt="Thierry Correia" title="Thierry Correia" width="20" height="21">&nbsp;Thierry Correia</a></td> <td class="textocentroclaro">defensa</td> <td class="textocentroclaro">25</td> </tr> <tr > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">14</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/jose-gaya.html" title="Ver jugador"><img src="/deportes/ed/img/equipos/191/132105_peq.jpg" alt="Jos茅 Gay谩" title="Jos茅 Gay谩" width="20" height="21">&nbsp;Jos茅 Gay谩</a></td> <td class="textocentroclaro">defensa</td> <td class="textocentroclaro">29</td> </tr> <tr class="par" > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">15</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/cesar-tarrega.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="C茅sar T谩rrega" title="C茅sar T谩rrega" width="20" height="21">&nbsp;C茅sar T谩rrega</a></td> <td class="textocentroclaro">defensa</td> <td class="textocentroclaro">22</td> </tr> <tr > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">20</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/dimitri-foulquier.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="Dimitri Foulquier" title="Dimitri Foulquier" width="20" height="21">&nbsp;Dimitri Foulquier</a></td> <td class="textocentroclaro">defensa</td> <td class="textocentroclaro">31</td> </tr> <tr class="par" > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">21</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/jesus-vazquez.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="Jes煤s V谩zquez" title="Jes煤s V谩zquez" width="20" height="21">&nbsp;Jes煤s V谩zquez</a></td> <td class="textocentroclaro">defensa</td> <td class="textocentroclaro">21</td> </tr> <tr > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">24</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/yarek-gasiorowski.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="Yarek Gasiorowski" title="Yarek Gasiorowski" width="20" height="21">&nbsp;Yarek Gasiorowski</a></td> <td class="textocentroclaro">defensa</td> <td class="textocentroclaro">19</td> </tr> <tr class="par" > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">38</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/iker-cordoba.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="Iker C贸rdoba" title="Iker C贸rdoba" width="20" height="21">&nbsp;Iker C贸rdoba</a></td> <td class="textocentroclaro">defensa</td> <td class="textocentroclaro">19</td> </tr> <tr > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">39</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/rodrigo-abajas.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="Rodrigo Abajas" title="Rodrigo Abajas" width="20" height="21">&nbsp;Rodrigo Abajas</a></td> <td class="textocentroclaro">defensa</td> <td class="textocentroclaro">21</td> </tr> <tr class="par" > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">5</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/enzo-barrenechea.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="Enzo Barrenechea" title="Enzo Barrenechea" width="20" height="21">&nbsp;Enzo Barrenechea</a></td> <td class="textocentroclaro">centrocampista</td> <td class="textocentroclaro">23</td> </tr> <tr > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">7</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/sergi-canos.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="Sergi Can贸s" title="Sergi Can贸s" width="20" height="21">&nbsp;Sergi Can贸s</a></td> <td class="textocentroclaro">delantero</td> <td class="textocentroclaro">27</td> </tr> <tr class="par" > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">8</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/javier-guerra.html" title="Ver jugador"><img src="/deportes/ed/img/equipos/191/546540_peq.jpeg" alt="Javier Guerra" title="Javier Guerra" width="20" height="21">&nbsp;Javier Guerra</a></td> <td class="textocentroclaro">centrocampista</td> <td class="textocentroclaro">21</td> </tr> <tr > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">10</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/andre-almeida.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="Andr茅 Almeida" title="Andr茅 Almeida" width="20" height="21">&nbsp;Andr茅 Almeida</a></td> <td class="textocentroclaro">centrocampista</td> <td class="textocentroclaro">24</td> </tr> <tr class="par" > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">18</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/pepelu.html" title="Ver jugador"><img src="/deportes/ed/img/equipos/191/220191_peq.jpeg" alt="Pepelu" title="Pepelu" width="20" height="21">&nbsp;Pepelu</a></td> <td class="textocentroclaro">centrocampista</td> <td class="textocentroclaro">26</td> </tr> <tr > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">23</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/fran-perez.html" title="Ver jugador"><img src="/deportes/ed/img/equipos/191/466057_peq.jpeg" alt="Fran P茅rez" title="Fran P茅rez" width="20" height="21">&nbsp;Fran P茅rez</a></td> <td class="textocentroclaro">delantero</td> <td class="textocentroclaro">22</td> </tr> <tr class="par" > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">28</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/ali-fadal.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="Ali Fadal" title="Ali Fadal" width="20" height="21">&nbsp;Ali Fadal</a></td> <td class="textocentroclaro">centrocampista</td> <td class="textocentroclaro">20</td> </tr> <tr > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">32</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/martin-tejon-fauli.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="Mart铆n Tej贸n Fauli" title="Mart铆n Tej贸n Fauli" width="20" height="21">&nbsp;Mart铆n Tej贸n Fauli</a></td> <td class="textocentroclaro">centrocampista</td> <td class="textocentroclaro">20</td> </tr> <tr class="par" > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">9</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/hugo-duro.html" title="Ver jugador"><img src="/deportes/ed/img/equipos/191/439716_peq.jpeg" alt="Hugo Duro" title="Hugo Duro" width="20" height="21">&nbsp;Hugo Duro</a></td> <td class="textocentroclaro">delantero</td> <td class="textocentroclaro">25</td> </tr> <tr > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">11</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/rafa-mir.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="Rafa Mir" title="Rafa Mir" width="20" height="21">&nbsp;Rafa Mir</a></td> <td class="textocentroclaro">delantero</td> <td class="textocentroclaro">27</td> </tr> <tr class="par" > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">16</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/diego-lopez.html" title="Ver jugador"><img src="/deportes/ed/img/equipos/191/493072_peq.jpeg" alt="Diego L贸pez" title="Diego L贸pez" width="20" height="21">&nbsp;Diego L贸pez</a></td> <td class="textocentroclaro">delantero</td> <td class="textocentroclaro">22</td> </tr> <tr > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">17</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/dani-gomez.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="Dani G贸mez" title="Dani G贸mez" width="20" height="21">&nbsp;Dani G贸mez</a></td> <td class="textocentroclaro">delantero</td> <td class="textocentroclaro">26</td> </tr> <tr class="par" > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">22</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/luis-rioja.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="Luis Rioja" title="Luis Rioja" width="20" height="21">&nbsp;Luis Rioja</a></td> <td class="textocentroclaro">delantero</td> <td class="textocentroclaro">31</td> </tr> <tr > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">27</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/david-otorbi.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="David Otorbi" title="David Otorbi" width="20" height="21">&nbsp;David Otorbi</a></td> <td class="textocentroclaro">delantero</td> <td class="textocentroclaro">17</td> </tr> <tr class="par" > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">30</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/german-valera.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="German Valera" title="German Valera" width="20" height="21">&nbsp;German Valera</a></td> <td class="textocentroclaro">delantero</td> <td class="textocentroclaro">22</td> </tr> <tr > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">42</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/warren-madrigal.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="Warren Madrigal" title="Warren Madrigal" width="20" height="21">&nbsp;Warren Madrigal</a></td> <td class="textocentroclaro">delantero</td> <td class="textocentroclaro">20</td> </tr> <tr class="par" > <th scope="row" class="textodcha vacio"><a class="geca_enlace_equipo" href="" title="Ver jugador">44</a></th> <td class="textonegrita"><a class="geca_enlace_equipo" href="../valencia-cf/.html" title="Ver jugador"><img src="/deportes/ed/img/comun/jugador-base_peq.jpg" alt="Ismael" title="Ismael" width="20" height="21">&nbsp;Ismael</a></td> <td class="textocentroclaro">delantero</td> <td class="textocentroclaro">20</td> </tr> </tbody> <tfoot> <tr> <th scope="row" colspan="9"> </th></tr> </tfoot> </table> </div> <div id="tablaresultados" class="tablaresultados tablas_ados"> <table summary="Estad铆sticas de la temporada"> <thead> <tr> <th colspan="8" scope="col"><span>PARTIDO</span></th> </tr> </thead> <tbody> <tr class="marcalinea"> <th scope="row" class="textoizda"><span>Jugados</span></th> <td class="textocentro">13</td> </tr> <tr class="marcalinea"> <th scope="row" class="textoizda"><span>Ganados</span></th> <td class="textocentro">2</td> </tr> <tr class="marcalinea"> <th scope="row" class="textoizda"><span>Empatados</span></th> <td class="textocentro">4</td> </tr> <tr class="marcalinea"> <th scope="row" class="textoizda"><span>Perdidos</span></th> <td class="textocentro">7</td> </tr> </tbody> </table> <table summary="Goles"> <caption>&nbsp;</caption> <thead> <tr><th colspan="8" scope="col"><span>GOLES</span></th></tr> </thead> <tbody> <tr class="marcalinea"> <th scope="row" class="textoizda"><span>A favor</span></th> <td class="textocentro">13</td> </tr> <tr class="marcalinea"> <th scope="row" class="textoizda"><span>En contra</span></th> <td class="textocentro">21</td> </tr> </tbody> </table> <table summary="Infracciones"> <caption>&nbsp;</caption> <thead> <tr> <th colspan="8" scope="col"><span>INFRACCIONES</span></th> </tr> </thead> <tbody> <tr class="marcalinea"> <th scope="row" class="textoizda"><span>Faltas</span></th> <td class="textocentro">&nbsp;</td> </tr> <tr> <th scope="row" class="textoizdanormal"><span>Cometidas</span></th> <td class="textocentroclaro">155</td> </tr> <tr> <th scope="row" class="textoizdanormal"><span>Recibidas</span></th> <td class="textocentroclaro">147</td> </tr> <tr class="marcalinea"> <th scope="row" class="textoizda"><span>Tarjetas</span></th> <td class="textocentro">&nbsp;</td> </tr> <tr> <th scope="row" class="textoizdanormal"><span>Amarillas</span></th> <td class="textocentroclaro">32</td> </tr> <tr> <th scope="row" class="textoizdanormal"><span>Rojas</span></th> <td class="textocentroclaro">1</td> </tr> </tbody> </table> <table summary="Acciones"> <caption>&nbsp;</caption> <thead> <tr> <th colspan="8" scope="col"><span>ACCIONES</span></th> </tr> </thead> <tbody> <tr class="marcalinea"> <th scope="row" class="textoizda"><span>Remates totales</span></th> <td class="textocentro">85</td> </tr> <tr class="marcalinea"> <th scope="row" class="textoizda"><span>Balones</span></th> <td class="textocentro">&nbsp;</td> </tr> <tr> <th scope="row" class="textoizdanormal"><span>Perdidos</span></th> <td class="textocentroclaro">82</td> </tr> <tr> <th scope="row" class="textoizdanormal"><span>Recuperados</span></th> <td class="textocentroclaro">154</td> </tr> <tr class="marcalinea"> <th scope="row" class="textoizda"><span>Asistencias</span></th> <td class="textocentro">7</td> </tr> <tr class="marcalinea"> <th scope="row" class="textoizda"><span>Penaltis</span></th> <td class="textocentro">&nbsp;</td> </tr> <tr> <th scope="row" class="textoizdanormal"><span>A favor</span></th> <td class="textocentroclaro">2</td> </tr> <tr> <th scope="row" class="textoizdanormal"><span>En contra</span></th> <td class="textocentroclaro">3</td> </tr> <tr class="marcalinea"> <th scope="row" class="textoizda"><span>Fueras de juego</span></th> <td class="textocentro">&nbsp;</td> </tr> <tr> <th scope="row" class="textoizdanormal"><span>En contra</span></th> <td class="textocentroclaro">33</td> </tr> </tbody> </table> <table summary="Acciones"> <caption>&nbsp;</caption> <thead> <tr> <th colspan="8" scope="col"><span>RANKING</span></th> </tr> </thead> <tbody> <tr class="marcalinea"> <th scope="row" class="textoizda"><a target="_top" class="geca_enlace_estadisticas" href="../estadisticas/valencia-cf/"><span>Ranking estad铆stico por jugadores</span></a></th> </tr> </tbody> </table> </div> </div> </div> </div> </div> <div class="depcolumnadcha"> <div id="hueco1"></div> <script> $("#hueco1").load("/deportes/ed/buscador/widget?estilos=0"); </script> <div class="sidebar-sticky"> <div class="ad-sticky"> <div id="div-gpt-ad_300dcha"></div> </div> </div> </div> </div> </div> <div class="bloqueclear"></div> <footer class="footer "> <div class="wrapper"> <div class="footer-up lozad" data-background-image="/images/border-decoration.png"> <div class="footer-up__decoration"></div> <article class="footer-up__highlight-topics"> <h2>Temas destacados</h2> <ul class="rounded-tags footer-up__hightlight-links"> <li> <a href="https://www.superdeporte.es/valencia-cf/" target="_blank">Noticias Valencia CF</a> </li> <li> <a href="https://www.superdeporte.es/fichajes/" target="_blank">Mercado de Fichajes</a> </li> <li> <a href="https://www.superdeporte.es/formula1/" target="_blank">F贸rmula 1</a> </li> </ul> </article> <nav class="section-menu" itemscope="" itemtype="https://schema.org/SiteNavigationElement"> <ul class="section-menu__links"> <li itemprop="name"> <a id="valenciacf" class="menu-default" href="https://www.superdeporte.es/valencia-cf/" itemprop="url"> <span itemprop="name">Valencia CF</span> </a> </li> <li itemprop="name"> <a id="levanteud" class="menu-default" href="https://www.superdeporte.es/levante-ud/" itemprop="url"> <span itemprop="name">Levante UD</span> </a> </li> <li itemprop="name"> <a id="villarrealcf" class="menu-default" href="https://www.superdeporte.es/villarreal-cf/" itemprop="url"> <span itemprop="name">Villarreal CF</span> </a> </li> <li itemprop="name"> <a id="futbol" class="menu-default" href="https://www.superdeporte.es/futbol/" itemprop="url"> <span itemprop="name">F煤tbol</span> </a> </li> <li itemprop="name"> <a id="valenciabc" class="menu-default" href="https://www.superdeporte.es/valencia-basket/" itemprop="url"> <span itemprop="name">Valencia BC</span> </a> </li> <li itemprop="name"> <a id="baloncesto" class="menu-default" href="https://www.superdeporte.es/baloncesto/" itemprop="url"> <span itemprop="name">Baloncesto</span> </a> </li> <li itemprop="name"> <a id="motor" class="menu-default" href="https://www.superdeporte.es/motor/" itemprop="url"> <span itemprop="name">Motor</span> </a> </li> <li itemprop="name"> <a id="polideportivo" class="menu-default" href="https://www.superdeporte.es/polideportivo/" itemprop="url"> <span itemprop="name">Polideportivo</span> </a> </li> <li itemprop="name"> <a id="opinion" class="menu-default" href="https://www.superdeporte.es/opinion/" itemprop="url"> <span itemprop="name">Opini贸n</span> </a> </li> <li itemprop="name"> <a id="fdj" class="menu-default" href="https://www.superdeporte.es/fuera-de-juego/" itemprop="url"> <span itemprop="name">FDJ</span> </a> </li> <li itemprop="name"> <a id="ocio" class="menu-default" href="https://www.superdeporte.es/ocio/" itemprop="url"> <span itemprop="name">OCIO</span> </a> </li> <li itemprop="name"> <a id="envalencia" class="menu-default" href="https://val.superdeporte.es/" itemprop="url"> <span itemprop="name">EN VALENCI脌</span> </a> </li> </ul> </nav> <ul class="footer-up__group-links"> <li class="footer-up__brand-link"> <a href="https://www.superdeporte.es/">superdeporte.es</a> </li> <li> <a href="https://www.superdeporte.es/conozcanos/"> Con贸zcanos </a> </li> <li> <a href="https://www.superdeporte.es/localizacion/"> Localizaci贸n </a> </li> <li> <a href="https://www.prensaiberica360.es/tarifas-superdeporte-2/?_ga=2.65676204.34452879.1623662101-1733634132.1619450258"> Publicidad </a> </li> <li> <a href="https://www.becontent.es/?_ga=2.85957018.2036252155.1623672498-1654516487.1617006707"> Branded Content </a> </li> <li> <a href="https://www.superdeporte.es/ayudas-y-subvenciones/"> Subvenciones </a> </li> </ul> <article class="footer-up__medias row"> <div class="footer-up__epi-logos col-3 col-md-12 col-xs-12"> <a href="https://www.prensaiberica.es/" target="_blank" rel="nofollow"> <img src="https://estaticos-cdn.superdeporte.es/images/footer/prensa-iberica-logo.png?id=4ad3bca1b0d2e44fe794" alt="Prensa Ib茅rica Logo" loading="lazy"> </a> <a href="https://www.prensaiberica360.es/" target="_blank" rel="nofollow"> <img src="https://estaticos-cdn.superdeporte.es/images/footer/prensa-iberica-360.png?id=00bc9e3946af531b5a7b" alt="Prensa Ib茅rica 360" loading="lazy"> </a> </div> <div class="footer-up__medias-group col-9 col-md-12 col-xs-12 row"> <span class="main-section">Otras webs de Prensa Ib茅rica Media</span> <ul class="row"> <li class="col-6"> <span id="prensa" class="main-section" href="" itemprop="url">Prensa</span> <ul class="row footer-up__medias-group__block"> <li class="col-6"> <a href="https://www.diaridegirona.cat" class="" target="_blank">Diari de Girona</a> </li> <li class="col-6"> <a href="https://www.diariocordoba.com/" class="" target="_blank">Diario C贸rdoba</a> </li> <li class="col-6"> <a href="https://www.diariodeibiza.es" class="" target="_blank">Diario de Ibiza</a> </li> <li class="col-6"> <a href="https://www.informacion.es" class="" target="_blank">INFORMACI脫N</a> </li> <li class="col-6"> <a href="https://www.diariodemallorca.es" class="" target="_blank">Diario de Mallorca</a> </li> <li class="col-6"> <a href="https://www.eldia.es" class="" target="_blank">El D铆a</a> </li> <li class="col-6"> <a href="https://www.emporda.info" class="" target="_blank">Empord脿</a> </li> <li class="col-6"> <a href="https://www.elperiodicodearagon.com/" class="" target="_blank">El Peri贸dico de Arag贸n</a> </li> <li class="col-6"> <a href="https://www.elperiodico.com/es/" class="" target="_blank">El Peri贸dico de Catalunya</a> </li> <li class="col-6"> <a href="https://www.epe.es/es/" class="" target="_blank" rel="nofollow">El Peri贸dico de Espa帽a</a> </li> <li class="col-6"> <a href="https://www.elperiodicoextremadura.com/" class="" target="_blank">El Peri贸dico de Extremadura</a> </li> <li class="col-6"> <a href="https://www.elperiodicomediterraneo.com/" class="" target="_blank">El Peri贸dico Mediterr谩neo</a> </li> <li class="col-6"> <a href="https://www.farodevigo.es" class="" target="_blank">Faro de Vigo</a> </li> <li class="col-6"> <a href="https://lacronicadebadajoz.elperiodicoextremadura.com/" class="" target="_blank">La Cr贸nica de Badajoz</a> </li> <li class="col-6"> <a href="https://www.lne.es" class="" target="_blank">La Nueva Espa帽a</a> </li> <li class="col-6"> <a href="https://www.laopinioncoruna.es" class="" target="_blank">La Opini贸n A Coru帽a</a> </li> <li class="col-6"> <a href="https://www.laopiniondemurcia.es" class="" target="_blank">La Opini贸n de Murcia</a> </li> <li class="col-6"> <a href="https://www.laopiniondemalaga.es" class="" target="_blank">La Opini贸n de M谩laga</a> </li> <li class="col-6"> <a href="https://www.laopiniondezamora.es" class="" target="_blank">La Opini贸n de Zamora</a> </li> <li class="col-6"> <a href="https://www.laprovincia.es" class="" target="_blank">La Provincia</a> </li> <li class="col-6"> <a href="https://www.levante-emv.com" class="" target="_blank">Levante-EMV</a> </li> <li class="col-6"> <a href="https://www.mallorcazeitung.es" class="" target="_blank">Mallorca Zeitung</a> </li> <li class="col-6"> <a href="https://www.regio7.cat" class="" target="_blank">Regio7</a> </li> <li class="col-6"> <a href="https://www.sport.es/es/" class="" target="_blank">Sport</a> </li> <li class="col-6"> <a href="https://www.superdeporte.es" class="" target="_blank">Superdeporte</a> </li> <li class="col-6"> <a href="https://www.elcorreogallego.es/" class="" target="_blank">El Correo Gallego</a> </li> <li class="col-6"> <a href="https://www.elcorreoweb.es/" class="" target="_blank">El Correo de Andaluc铆a</a> </li> </ul> <span id="radioytelevision" class="main-section" href="" itemprop="url">Radio y televisi贸n</span> <ul class="row footer-up__medias-group__block"> <li class="col-6"> <a href="https://www.levante-emv.com/videos/levante-tv/" class="" target="_blank">LevanteTV</a> </li> <li class="col-6"> <a href="https://www.informacion.es/videos/informaciontv/" class="" target="_blank">InformacionTV</a> </li> <li class="col-6"> <a href="https://www.elperiodicomediterraneo.com/videos/mediterraneo-tv/" class="" target="_blank">MediTV</a> </li> </ul> </li> <li class="col-5"> <span id="revistas" class="main-section" href="" itemprop="url">Revistas</span> <ul class="row footer-up__medias-group__block"> <li class="col-6"> <a href="https://www.elperiodico.com/cuore/" class="" target="_blank">Cuore</a> </li> <li class="col-6"> <a href="https://www.woman.es/" class="" target="_blank">Woman</a> </li> <li class="col-6"> <a href="https://www.stilo.es/" class="" target="_blank">Stilo</a> </li> <li class="col-6"> <a href="https://viajar.elperiodico.com/" class="" target="_blank">Viajar</a> </li> </ul> <span id="canalestematicos" class="main-section" href="" itemprop="url">Canales tem谩ticos</span> <ul class="row footer-up__medias-group__block"> <li class="col-6"> <a href="https://www.superdeporte.es/tendencias21/" class="" rel="nofollow" target="_blank">Tendencias21</a> </li> <li class="col-6"> <a href="https://www.superdeporte.es/medio-ambiente/" class="" rel="nofollow" target="_blank">Medio Ambiente</a> </li> <li class="col-6"> <a href="https://formula1.lne.es/" class="" rel="nofollow" target="_blank">F贸rmula1</a> </li> <li class="col-6"> <a href="https://www.compramejor.es/" class="" rel="nofollow" target="_blank">Compramejor</a> </li> <li class="col-6"> <a href="https://www.iberempleos.es/" class="" rel="nofollow" target="_blank">Iberempleos</a> </li> <li class="col-6"> <a href="https://neomotor.epe.es" class="" rel="nofollow" target="_blank">Neomotor</a> </li> <li class="col-6"> <a href="https://www.elperiodico.com/es/loteria-navidad/" class="" target="_blank">Loter铆a de Navidad 2023</a> </li> <li class="col-6"> <a href="https://www.premios-cine.com/oscars/" class="" rel="nofollow" target="_blank">Premios Oscar</a> </li> <li class="col-6"> <a href="https://www.premios-cine.com/goya/" class="" rel="nofollow" target="_blank">Premios Goya</a> </li> <li class="col-6"> <a href="https://ocasion.neomotor.com/" class="" rel="nofollow" target="_blank">Coches de Ocasi贸n</a> </li> <li class="col-6"> <a href="https://www.tucasa.com/" class="" rel="nofollow" target="_blank">Tucasa</a> </li> <li class="col-6"> <a href="https://www.cambalache.es/" class="" rel="nofollow" target="_blank">Cambalache</a> </li> <li class="col-6"> <a href="https://www.codigonuevo.com/" class="" rel="nofollow" target="_blank">C贸digo Nuevo</a> </li> <li class="col-6"> <a href="https://www.casagourmet.es/" class="" rel="nofollow" target="_blank">Casa Gourmet</a> </li> </ul> </li> </ul> </div> </article> </div> </div> <article class="footer-down"> <div class="wrapper"> <p>Superdeporte Empresa Editorial, S.A.<br>Todos los derechos reservados</p> <nav> <ul class="footer-down__menu"> <li class="footer-down__item"> <a href="https://micuenta.superdeporte.es/protecciondatos?gdprTipo=3" title="Aviso legal"> Aviso legal </a> </li> <li class="footer-down__item"> <a href="https://www.superdeporte.es/politica-privacidad/" title="Pol铆tica de privacidad y cookies"> Pol铆tica de privacidad y cookies </a> </li> <li class="footer-down__item"> <a title="Preferencias de privacidad" href="javascript:Didomi.preferences.show();"> Preferencias de privacidad </a> </li> </ul> </nav> </div> </article> </footer> </div> <script src="https&#x3A;&#x2F;&#x2F;estaticos-cdn.superdeporte.es&#x2F;js&#x2F;header.js&#x3F;id&#x3D;65e883a550d96b6a13ab"></script> </body> </html> <!-- Organization para SEO con schema.org --> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Organization", "name": "Superdeporte", "url": "https://www.superdeporte.es", "logo":{ "@type":"ImageObject", "url":"https://www.superdeporte.es/images/logo-superdeporte.png" }, "sameAs":[ "https://www.twitter.com/superdeporte_es","https://www.facebook.com/superdeporte","https://www.instagram.com/superdeporte.es"] } </script> <!-- Breadcrumb - Ruta de Navegaci贸n para SEO con schema.org --> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [ { "@type": "ListItem", "position": "1", "item": { "name": "Primera Divisi贸n - LaLiga EA Sports", "@id": "https://www.superdeporte.es/deportes/futbol/primera-division/" } }, { "@type": "ListItem", "position": "2", "item": { "name": "equipos", "@id": "https://www.superdeporte.es/deportes/futbol/primera-division/equipos.html" } }, { "@type": "ListItem", "position": "3", "item": { "name": "Valencia CF", "@id": "https://www.superdeporte.es" } } ] } </script>

Pages: 1 2 3 4 5 6 7 8 9 10