CINXE.COM

Partidos y resultados en directo de 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>Partidos y resultados en directo de Primera Divisi贸n - LaLiga EA Sports - Superdeporte</title> <meta name="description" content="Partidos de hoy y resultados en directo de Primera Divisi贸n - LaLiga EA Sports. Vive Primera Divisi贸n - LaLiga EA Sports en directo con Superdeporte. "> <meta name="keywords" content="Partidos Primera Divisi贸n - LaLiga EA Sports, partidos futbol, partidos en directo, partido Primera Divisi贸n - LaLiga EA Sports, Primera Divisi贸n - LaLiga EA Sports, futbol 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="Partidos de hoy y resultados en directo de Primera Divisi贸n - LaLiga EA Sports. Vive Primera Divisi贸n - LaLiga EA Sports en directo con Superdeporte. "> <meta name="keywords" content="Partidos Primera Divisi贸n - LaLiga EA Sports, partidos futbol, partidos en directo, partido Primera Divisi贸n - LaLiga EA Sports, Primera Divisi贸n - LaLiga EA Sports, futbol 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/partidos-en-directo.html" 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": "deportes|futbol|primera division|partidos en directo", "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/partidos-en-directo.html", "domain": "superdeporte.es", "hostname": "www.superdeporte.es", "parameters": undefined, "path": "/deportes/futbol/primera-division/partidos-en-directo.html" } }, "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("resultados-en-directo-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 2022</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 2022</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 2024</span> </a> <a class="menu-default " itemprop="url" href="/deportes/futbol/primera-division/partidos-en-directo.html"> <span class="menu-default__item" itemprop="name">partidos en directo</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> <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/partidos-en-directo.html" 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/partidos-en-directo.html" 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=Partidos y resultados en directo de Primera Divisi贸n - LaLiga EA Sports: http://www.superdeporte.es/deportes/futbol/primera-division/partidos-en-directo.html" target="_blank" title="Compartir en Whatsapp" rel="nofollow"> <i class="i-whatsapp"></i> </a> </li> <li class="rrss__item"> <a href="mailto:?subject=Partidos y resultados en directo de Primera Divisi贸n - LaLiga EA Sports&body=http://www.superdeporte.es/deportes/futbol/primera-division/partidos-en-directo.html" target="_blank" title="Compartir por correo" rel="nofollow"> <i class="i-mail"></i> </a> </li> </ul> </div> <div class="deptitular"> <h1>Partidos y resultados en directo de Primera Divisi贸n - LaLiga EA Sports</h1> </div> <div class="tablas_a_2_cols"> <div class="tablaresultados tablaresultados--base" itemscope="" itemtype="schema.org/SportsEvent"> <meta itemprop="endDate" content=""> <table summary="Resultados en directo: Mallorca - Valencia CF"> <caption> <h3 itemprop="name"> <a target="_top" href="2024-2025/mallorca-valencia-cf-232024_01_15_2024181_2024191.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo" name="Mallorca - Valencia CF" itemprop="url">Mallorca - Valencia CF</a> </h3> </caption> <thead> <tr> <th scope="col" class="textoizda" itemtype="schema.org/Place" itemscope="" itemprop="location"> <span itemprop="name"> <a target="_top" href="2024-2025/mallorca-valencia-cf-232024_01_15_2024181_2024191.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo">Estadi Mallorca Son Moix</a> </span> </th> <th scope="col"><span class="partfinalizado">Prepartido</span></th> <th scope="col" class="textodcha" itemprop="startDate" content="2024-11-29T20:00:00+00:00">29/11 21:00h.</th> </tr> </thead> <tbody> <tr> <td class="textodcha"> <a target="_top" href="./mallorca/" class="geca_enlace_equipo" alt="Mallorca" title="Mallorca"> Mallorca <img src="/deportes/ed/img/equipos/181/escudo_peq.jpg" title="Mallorca" alt="Mallorca"> </a> </td> <td> <span class="celdagoles"> <a target="_top" href="2024-2025/mallorca-valencia-cf-232024_01_15_2024181_2024191.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo"> - </a> </span> </td> <td class="textoizda"> <a target="_top" class="geca_enlace_equipo" href="./valencia-cf/" alt="Valencia CF" title="Valencia CF"> <img src="/deportes/ed/img/equipos/191/escudo_peq.jpg" title="Valencia CF" alt="Valencia CF"> Valencia CF </a> </td> </tr> <tr class="par"> <th colspan="3" scope="row" class="directogoles"> </th> </tr> </tbody> <tfoot> <tr> <th scope="row" colspan="5"> <div> <a target="_top" href="2024-2025/mallorca-valencia-cf-232024_01_15_2024181_2024191.html" class="geca_enlace_partido" title="Partido en directo">Partido en directo </a> </div> <div class="publiResultadoDirecto"> </div> </th> </tr> </tfoot> </table> </div> <div class="tablaresultados tablaresultados--base" itemscope="" itemtype="schema.org/SportsEvent"> <meta itemprop="endDate" content=""> <table summary="Resultados en directo: Alav茅s - Legan茅s"> <caption> <h3 itemprop="name"> <a target="_top" href="2024-2025/alaves-leganes-232024_01_15_2024173_2024957.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo" name="Alav茅s - Legan茅s" itemprop="url">Alav茅s - Legan茅s</a> </h3> </caption> <thead> <tr> <th scope="col" class="textoizda" itemtype="schema.org/Place" itemscope="" itemprop="location"> <span itemprop="name"> <a target="_top" href="2024-2025/alaves-leganes-232024_01_15_2024173_2024957.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo">Mendizorroza</a> </span> </th> <th scope="col"><span class="partfinalizado">Prepartido</span></th> <th scope="col" class="textodcha" itemprop="startDate" content="2024-11-30T15:15:00+00:00">30/11 16:15h.</th> </tr> </thead> <tbody> <tr> <td class="textodcha"> <a target="_top" href="./alaves/" class="geca_enlace_equipo" alt="Alav茅s" title="Alav茅s"> Alav茅s <img src="/deportes/ed/img/equipos/173/escudo_peq.jpeg" title="Alav茅s" alt="Alav茅s"> </a> </td> <td> <span class="celdagoles"> <a target="_top" href="2024-2025/alaves-leganes-232024_01_15_2024173_2024957.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo"> - </a> </span> </td> <td class="textoizda"> <a target="_top" class="geca_enlace_equipo" href="./leganes/" alt="Legan茅s" title="Legan茅s"> <img src="/deportes/ed/img/equipos/957/escudo_peq.jpg" title="Legan茅s" alt="Legan茅s"> Legan茅s </a> </td> </tr> <tr class="par"> <th colspan="3" scope="row" class="directogoles"> </th> </tr> </tbody> <tfoot> <tr> <th scope="row" colspan="5"> <div> <a target="_top" href="2024-2025/alaves-leganes-232024_01_15_2024173_2024957.html" class="geca_enlace_partido" title="Partido en directo">Partido en directo </a> </div> <div class="publiResultadoDirecto"> </div> </th> </tr> </tfoot> </table> </div> <div class="tablaresultados tablaresultados--base" itemscope="" itemtype="schema.org/SportsEvent"> <meta itemprop="endDate" content=""> <table summary="Resultados en directo: Barcelona - Las Palmas"> <caption> <h3 itemprop="name"> <a target="_top" href="2024-2025/barcelona-las-palmas-232024_01_15_2024178_2024407.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo" name="Barcelona - Las Palmas" itemprop="url">Barcelona - Las Palmas</a> </h3> </caption> <thead> <tr> <th scope="col" class="textoizda" itemtype="schema.org/Place" itemscope="" itemprop="location"> <span itemprop="name"> <a target="_top" href="2024-2025/barcelona-las-palmas-232024_01_15_2024178_2024407.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo">Estadi Ol铆mpic Llu铆s Companys</a> </span> </th> <th scope="col"><span class="partfinalizado">Prepartido</span></th> <th scope="col" class="textodcha" itemprop="startDate" content="2024-11-30T13:00:00+00:00">30/11 14:00h.</th> </tr> </thead> <tbody> <tr> <td class="textodcha"> <a target="_top" href="./barcelona/" class="geca_enlace_equipo" alt="Barcelona" title="Barcelona"> Barcelona <img src="/deportes/ed/img/equipos/178/escudo_peq.jpg" title="Barcelona" alt="Barcelona"> </a> </td> <td> <span class="celdagoles"> <a target="_top" href="2024-2025/barcelona-las-palmas-232024_01_15_2024178_2024407.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo"> - </a> </span> </td> <td class="textoizda"> <a target="_top" class="geca_enlace_equipo" href="./las-palmas/" alt="Las Palmas" title="Las Palmas"> <img src="/deportes/ed/img/equipos/407/escudo_peq.jpg" title="Las Palmas" alt="Las Palmas"> Las Palmas </a> </td> </tr> <tr class="par"> <th colspan="3" scope="row" class="directogoles"> </th> </tr> </tbody> <tfoot> <tr> <th scope="row" colspan="5"> <div> <a target="_top" href="2024-2025/barcelona-las-palmas-232024_01_15_2024178_2024407.html" class="geca_enlace_partido" title="Partido en directo">Partido en directo </a> </div> <div class="publiResultadoDirecto"> </div> </th> </tr> </tfoot> </table> </div> <div class="tablaresultados tablaresultados--base" itemscope="" itemtype="schema.org/SportsEvent"> <meta itemprop="endDate" content=""> <table summary="Resultados en directo: Espanyol - Celta de Vigo"> <caption> <h3 itemprop="name"> <a target="_top" href="2024-2025/espanyol-celta-de-vigo-232024_01_15_2024177_2024176.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo" name="Espanyol - Celta de Vigo" itemprop="url">Espanyol - Celta de Vigo</a> </h3> </caption> <thead> <tr> <th scope="col" class="textoizda" itemtype="schema.org/Place" itemscope="" itemprop="location"> <span itemprop="name"> <a target="_top" href="2024-2025/espanyol-celta-de-vigo-232024_01_15_2024177_2024176.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo">RCDE Stadium</a> </span> </th> <th scope="col"><span class="partfinalizado">Prepartido</span></th> <th scope="col" class="textodcha" itemprop="startDate" content="2024-11-30T17:30:00+00:00">30/11 18:30h.</th> </tr> </thead> <tbody> <tr> <td class="textodcha"> <a target="_top" href="./espanyol/" class="geca_enlace_equipo" alt="Espanyol" title="Espanyol"> Espanyol <img src="/deportes/ed/img/equipos/177/escudo_peq.jpg" title="Espanyol" alt="Espanyol"> </a> </td> <td> <span class="celdagoles"> <a target="_top" href="2024-2025/espanyol-celta-de-vigo-232024_01_15_2024177_2024176.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo"> - </a> </span> </td> <td class="textoizda"> <a target="_top" class="geca_enlace_equipo" href="./celta-de-vigo/" alt="Celta de Vigo" title="Celta de Vigo"> <img src="/deportes/ed/img/equipos/176/escudo_peq.jpg" title="Celta de Vigo" alt="Celta de Vigo"> Celta de Vigo </a> </td> </tr> <tr class="par"> <th colspan="3" scope="row" class="directogoles"> </th> </tr> </tbody> <tfoot> <tr> <th scope="row" colspan="5"> <div> <a target="_top" href="2024-2025/espanyol-celta-de-vigo-232024_01_15_2024177_2024176.html" class="geca_enlace_partido" title="Partido en directo">Partido en directo </a> </div> <div class="publiResultadoDirecto"> </div> </th> </tr> </tfoot> </table> </div> <div class="tablaresultados tablaresultados--base" itemscope="" itemtype="schema.org/SportsEvent"> <meta itemprop="endDate" content=""> <table summary="Resultados en directo: Real Valladolid - Atl茅tico de Madrid"> <caption> <h3 itemprop="name"> <a target="_top" href="2024-2025/real-valladolid-atletico-de-madrid-232024_01_15_2024192_2024175.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo" name="Real Valladolid - Atl茅tico de Madrid" itemprop="url">Real Valladolid - Atl茅tico de Madrid</a> </h3> </caption> <thead> <tr> <th scope="col" class="textoizda" itemtype="schema.org/Place" itemscope="" itemprop="location"> <span itemprop="name"> <a target="_top" href="2024-2025/real-valladolid-atletico-de-madrid-232024_01_15_2024192_2024175.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo">Jos茅 Zorrilla</a> </span> </th> <th scope="col"><span class="partfinalizado">Prepartido</span></th> <th scope="col" class="textodcha" itemprop="startDate" content="2024-11-30T20:00:00+00:00">30/11 21:00h.</th> </tr> </thead> <tbody> <tr> <td class="textodcha"> <a target="_top" href="./real-valladolid/" class="geca_enlace_equipo" alt="Real Valladolid" title="Real Valladolid"> Real Valladolid <img src="/deportes/ed/img/equipos/192/escudo_peq.jpeg" title="Real Valladolid" alt="Real Valladolid"> </a> </td> <td> <span class="celdagoles"> <a target="_top" href="2024-2025/real-valladolid-atletico-de-madrid-232024_01_15_2024192_2024175.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo"> - </a> </span> </td> <td class="textoizda"> <a target="_top" class="geca_enlace_equipo" href="./atletico-de-madrid/" alt="Atl茅tico de Madrid" title="Atl茅tico de Madrid"> <img src="/deportes/ed/img/equipos/175/escudo_peq.gif" title="Atl茅tico de Madrid" alt="Atl茅tico de Madrid"> Atl茅tico de Madrid </a> </td> </tr> <tr class="par"> <th colspan="3" scope="row" class="directogoles"> </th> </tr> </tbody> <tfoot> <tr> <th scope="row" colspan="5"> <div> <a target="_top" href="2024-2025/real-valladolid-atletico-de-madrid-232024_01_15_2024192_2024175.html" class="geca_enlace_partido" title="Partido en directo">Partido en directo </a> </div> <div class="publiResultadoDirecto"> </div> </th> </tr> </tfoot> </table> </div> <div class="tablaresultados tablaresultados--base" itemscope="" itemtype="schema.org/SportsEvent"> <meta itemprop="endDate" content=""> <table summary="Resultados en directo: Rayo Vallecano - Athletic Club"> <caption> <h3 itemprop="name"> <a target="_top" href="2024-2025/rayo-vallecano-athletic-club-232024_01_15_2024184_2024174.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo" name="Rayo Vallecano - Athletic Club" itemprop="url">Rayo Vallecano - Athletic Club</a> </h3> </caption> <thead> <tr> <th scope="col" class="textoizda" itemtype="schema.org/Place" itemscope="" itemprop="location"> <span itemprop="name"> <a target="_top" href="2024-2025/rayo-vallecano-athletic-club-232024_01_15_2024184_2024174.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo">Estadio de Vallecas</a> </span> </th> <th scope="col"><span class="partfinalizado">Prepartido</span></th> <th scope="col" class="textodcha" itemprop="startDate" content="2024-12-01T17:30:00+00:00">01/12 18:30h.</th> </tr> </thead> <tbody> <tr> <td class="textodcha"> <a target="_top" href="./rayo-vallecano/" class="geca_enlace_equipo" alt="Rayo Vallecano" title="Rayo Vallecano"> Rayo Vallecano <img src="/deportes/ed/img/equipos/184/escudo_peq.jpg" title="Rayo Vallecano" alt="Rayo Vallecano"> </a> </td> <td> <span class="celdagoles"> <a target="_top" href="2024-2025/rayo-vallecano-athletic-club-232024_01_15_2024184_2024174.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo"> - </a> </span> </td> <td class="textoizda"> <a target="_top" class="geca_enlace_equipo" href="./athletic-club/" alt="Athletic Club" title="Athletic Club"> <img src="/deportes/ed/img/equipos/174/escudo_peq.jpg" title="Athletic Club" alt="Athletic Club"> Athletic Club </a> </td> </tr> <tr class="par"> <th colspan="3" scope="row" class="directogoles"> </th> </tr> </tbody> <tfoot> <tr> <th scope="row" colspan="5"> <div> <a target="_top" href="2024-2025/rayo-vallecano-athletic-club-232024_01_15_2024184_2024174.html" class="geca_enlace_partido" title="Partido en directo">Partido en directo </a> </div> <div class="publiResultadoDirecto"> </div> </th> </tr> </tfoot> </table> </div> <div class="tablaresultados tablaresultados--base" itemscope="" itemtype="schema.org/SportsEvent"> <meta itemprop="endDate" content=""> <table summary="Resultados en directo: Real Madrid - Getafe"> <caption> <h3 itemprop="name"> <a target="_top" href="2024-2025/real-madrid-getafe-232024_01_15_2024186_20241450.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo" name="Real Madrid - Getafe" itemprop="url">Real Madrid - Getafe</a> </h3> </caption> <thead> <tr> <th scope="col" class="textoizda" itemtype="schema.org/Place" itemscope="" itemprop="location"> <span itemprop="name"> <a target="_top" href="2024-2025/real-madrid-getafe-232024_01_15_2024186_20241450.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo">Santiago Bernab茅u</a> </span> </th> <th scope="col"><span class="partfinalizado">Prepartido</span></th> <th scope="col" class="textodcha" itemprop="startDate" content="2024-12-01T15:15:00+00:00">01/12 16:15h.</th> </tr> </thead> <tbody> <tr> <td class="textodcha"> <a target="_top" href="./real-madrid/" class="geca_enlace_equipo" alt="Real Madrid" title="Real Madrid"> Real Madrid <img src="/deportes/ed/img/equipos/186/escudo_peq.jpg" title="Real Madrid" alt="Real Madrid"> </a> </td> <td> <span class="celdagoles"> <a target="_top" href="2024-2025/real-madrid-getafe-232024_01_15_2024186_20241450.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo"> - </a> </span> </td> <td class="textoizda"> <a target="_top" class="geca_enlace_equipo" href="./getafe/" alt="Getafe" title="Getafe"> <img src="/deportes/ed/img/equipos/1450/escudo_peq.jpg" title="Getafe" alt="Getafe"> Getafe </a> </td> </tr> <tr class="par"> <th colspan="3" scope="row" class="directogoles"> </th> </tr> </tbody> <tfoot> <tr> <th scope="row" colspan="5"> <div> <a target="_top" href="2024-2025/real-madrid-getafe-232024_01_15_2024186_20241450.html" class="geca_enlace_partido" title="Partido en directo">Partido en directo </a> </div> <div class="publiResultadoDirecto"> </div> </th> </tr> </tfoot> </table> </div> <div class="tablaresultados tablaresultados--base" itemscope="" itemtype="schema.org/SportsEvent"> <meta itemprop="endDate" content=""> <table summary="Resultados en directo: Real Sociedad - Real Betis"> <caption> <h3 itemprop="name"> <a target="_top" href="2024-2025/real-sociedad-real-betis-232024_01_15_2024188_2024185.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo" name="Real Sociedad - Real Betis" itemprop="url">Real Sociedad - Real Betis</a> </h3> </caption> <thead> <tr> <th scope="col" class="textoizda" itemtype="schema.org/Place" itemscope="" itemprop="location"> <span itemprop="name"> <a target="_top" href="2024-2025/real-sociedad-real-betis-232024_01_15_2024188_2024185.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo">Reale Arena</a> </span> </th> <th scope="col"><span class="partfinalizado">Prepartido</span></th> <th scope="col" class="textodcha" itemprop="startDate" content="2024-12-01T20:00:00+00:00">01/12 21:00h.</th> </tr> </thead> <tbody> <tr> <td class="textodcha"> <a target="_top" href="./real-sociedad/" class="geca_enlace_equipo" alt="Real Sociedad" title="Real Sociedad"> Real Sociedad <img src="/deportes/ed/img/equipos/188/escudo_peq.jpg" title="Real Sociedad" alt="Real Sociedad"> </a> </td> <td> <span class="celdagoles"> <a target="_top" href="2024-2025/real-sociedad-real-betis-232024_01_15_2024188_2024185.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo"> - </a> </span> </td> <td class="textoizda"> <a target="_top" class="geca_enlace_equipo" href="./real-betis/" alt="Real Betis" title="Real Betis"> <img src="/deportes/ed/img/equipos/185/escudo_peq.jpeg" title="Real Betis" alt="Real Betis"> Real Betis </a> </td> </tr> <tr class="par"> <th colspan="3" scope="row" class="directogoles"> </th> </tr> </tbody> <tfoot> <tr> <th scope="row" colspan="5"> <div> <a target="_top" href="2024-2025/real-sociedad-real-betis-232024_01_15_2024188_2024185.html" class="geca_enlace_partido" title="Partido en directo">Partido en directo </a> </div> <div class="publiResultadoDirecto"> </div> </th> </tr> </tfoot> </table> </div> <div class="tablaresultados tablaresultados--base" itemscope="" itemtype="schema.org/SportsEvent"> <meta itemprop="endDate" content=""> <table summary="Resultados en directo: Villarreal - Girona"> <caption> <h3 itemprop="name"> <a target="_top" href="2024-2025/villarreal-girona-232024_01_15_2024449_20242893.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo" name="Villarreal - Girona" itemprop="url">Villarreal - Girona</a> </h3> </caption> <thead> <tr> <th scope="col" class="textoizda" itemtype="schema.org/Place" itemscope="" itemprop="location"> <span itemprop="name"> <a target="_top" href="2024-2025/villarreal-girona-232024_01_15_2024449_20242893.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo">Estadio de la Cer谩mica</a> </span> </th> <th scope="col"><span class="partfinalizado">Prepartido</span></th> <th scope="col" class="textodcha" itemprop="startDate" content="2024-12-01T13:00:00+00:00">01/12 14:00h.</th> </tr> </thead> <tbody> <tr> <td class="textodcha"> <a target="_top" href="./villarreal/" class="geca_enlace_equipo" alt="Villarreal" title="Villarreal"> Villarreal <img src="/deportes/ed/img/equipos/449/escudo_peq.jpg" title="Villarreal" alt="Villarreal"> </a> </td> <td> <span class="celdagoles"> <a target="_top" href="2024-2025/villarreal-girona-232024_01_15_2024449_20242893.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo"> - </a> </span> </td> <td class="textoizda"> <a target="_top" class="geca_enlace_equipo" href="./girona/" alt="Girona" title="Girona"> <img src="/deportes/ed/img/equipos/2893/escudo_peq.jpeg" title="Girona" alt="Girona"> Girona </a> </td> </tr> <tr class="par"> <th colspan="3" scope="row" class="directogoles"> </th> </tr> </tbody> <tfoot> <tr> <th scope="row" colspan="5"> <div> <a target="_top" href="2024-2025/villarreal-girona-232024_01_15_2024449_20242893.html" class="geca_enlace_partido" title="Partido en directo">Partido en directo </a> </div> <div class="publiResultadoDirecto"> </div> </th> </tr> </tfoot> </table> </div> <div class="tablaresultados tablaresultados--base" itemscope="" itemtype="schema.org/SportsEvent"> <meta itemprop="endDate" content=""> <table summary="Resultados en directo: Sevilla - Osasuna"> <caption> <h3 itemprop="name"> <a target="_top" href="2024-2025/sevilla-osasuna-232024_01_15_2024179_2024450.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo" name="Sevilla - Osasuna" itemprop="url">Sevilla - Osasuna</a> </h3> </caption> <thead> <tr> <th scope="col" class="textoizda" itemtype="schema.org/Place" itemscope="" itemprop="location"> <span itemprop="name"> <a target="_top" href="2024-2025/sevilla-osasuna-232024_01_15_2024179_2024450.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo">Ram贸n S谩nchez-Pizju谩n</a> </span> </th> <th scope="col"><span class="partfinalizado">Prepartido</span></th> <th scope="col" class="textodcha" itemprop="startDate" content="2024-12-02T20:00:00+00:00">02/12 21:00h.</th> </tr> </thead> <tbody> <tr> <td class="textodcha"> <a target="_top" href="./sevilla/" class="geca_enlace_equipo" alt="Sevilla" title="Sevilla"> Sevilla <img src="/deportes/ed/img/equipos/179/escudo_peq.jpg" title="Sevilla" alt="Sevilla"> </a> </td> <td> <span class="celdagoles"> <a target="_top" href="2024-2025/sevilla-osasuna-232024_01_15_2024179_2024450.html" class="geca_enlace_partido" title="Ver directo" alt="Ver directo"> - </a> </span> </td> <td class="textoizda"> <a target="_top" class="geca_enlace_equipo" href="./osasuna/" alt="Osasuna" title="Osasuna"> <img src="/deportes/ed/img/equipos/450/escudo_peq.jpg" title="Osasuna" alt="Osasuna"> Osasuna </a> </td> </tr> <tr class="par"> <th colspan="3" scope="row" class="directogoles"> </th> </tr> </tbody> <tfoot> <tr> <th scope="row" colspan="5"> <div> <a target="_top" href="2024-2025/sevilla-osasuna-232024_01_15_2024179_2024450.html" class="geca_enlace_partido" title="Partido en directo">Partido en directo </a> </div> <div class="publiResultadoDirecto"> </div> </th> </tr> </tfoot> </table> </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 id="hueco2"></div> <script> $("#hueco2").load("/deportes/futbol/primera-division/jornada/widget/siguiente?estilos=0"); </script> </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 2024", "@id": "https://www.superdeporte.es/deportes/futbol/primera-division/" } }, { "@type": "ListItem", "position": "2", "item": { "name": "partidos en directo", "@id": "https://www.superdeporte.es/deportes/futbol/primera-division/partidos-en-directo.html" } } ] } </script>

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