Liverpool le sacó dos puntos más de diferencia al Arsenal y empezó a acariciar el título de la Premier League 2024/25. A diferencia de la temporada pasada, Manchester City está fuera de la ecuación y son solo dos equipos los que se disputan la corona del fútbol inglés.Los reds siguen escapándose al frente de la tabla: ya tienen 13 puntos de margen sobre el Arsenal y 19 sobre el Nottingham. Esos dos equipos, eso sí, tienen un partido disputado menos que el líder.Los gunners se atascaron una vez más en ataque y ya no transmiten la sensación de poder ser campeones tras dos tropiezos consecutivos frente a West Ham (0-1) y Nottingham Forest (0-0)“Dominamos el partido, lo intentamos de diferentes formas. Insistimos, pero nos falta esa chispa en la definición”, reconoció el técnico Mikel Arteta, tras el final del partido en City Ground.
@font-face {
font-family: 'SemanaSans-Regular';
src: url('https://multimedia.semana.com/2022/11_noviembre/recursos/fuentes/Semana…;);
}
@font-face {
font-family: 'SemanaSans-Bold';
src: url('https://multimedia.semana.com/2022/11_noviembre/recursos/fuentes/Semana…;);
}
@font-face {
font-family: 'SemanaSans-Medium';
src: url(https://multimedia.semana.com/2022/11_noviembre/recursos/fuentes/Semana…);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.cuerpo-tabla {
font-family: 'SemanaSans-Regular';
font-size: 15px;
text-align: center;
display: flex;
flex-direction: column;
color: #4d4d4d;
}
.encabezado {
font-family: 'SemanaSans-Regular';
}
#contenedor {
flex-grow: 1;
display: flex;
flex-direction: column;
align-items: center;
overflow: auto;
width: 100%;
max-width: 1000px;
margin: auto;
}
.tabla-container {
width: 100%;
overflow-x: auto;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 10px;
min-width: 700px;
border: 1px solid #ddd;
}
thead {
background: linear-gradient(180deg, rgba(92,11,99,1) 0%, rgba(119,10,130,1) 68%, rgba(132,9,144,1) 100%);
}
th {
color: white;
padding: 10px;
text-align: center;
border: 1px solid white;
border-bottom: 2px solid white;
}
th, td {
padding: 10px;
text-align: center;
border: 1px solid #ddd;
position: relative;
}
tr:nth-child(even) {
background-color: #f3eef3c4;
}
.escudo {
max-width: 25px;
height: auto;
display: block;
margin: auto;
}
.instr {
display: none;
}
.caja-logo-semana{
display: flex;
position: relative;
justify-content: right;
width: 100%;
max-width: 1000px;
margin: auto;
height: 50px;
border-top: 1px solid #ddd;
}
.logo-semana{
display: flex;
flex-direction: column;
position: relative;
width: 40px;
height: 40px;
left: 5px;
margin: 10px;
}
.titulo-tabla{
display: flex;
width: 100%;
max-width: 1000px;
margin: auto;
font-family: 'SemanaSans-Bold';
font-weight: 400;
font-style: normal;
font-size: 29px;
text-align: left;
line-height: 32px;
color: #770a82;
height: 55px;
border-top: 1px solid #ddd;
align-items: center;
}
.bold-text {
font-family: 'SemanaSans-Bold';
font-weight: bold;
}
.barra-azul {
position: absolute;
left: 0;
top: 0;
width: 3.5px;
height: 100%;
background-color: #0088ff;
}
.barra-naranja {
position: absolute;
left: 0;
top: 0;
width: 3.5px;
height: 100%;
background-color: #ff8c44;
}
.barra-roja {
position: absolute;
left: 0;
top: 0;
width: 3.5px;
height: 100%;
background-color: #ff1f1f;
}
.convenciones{
display: flex;
width: 100%;
max-width: 1000px;
height: 50px;
margin: auto;
justify-content: space-around;
}
.agrupador-convenciones{
display: flex;
font-family: 'SemanaSans-Regular';
font-weight: 400;
font-size: 14px;
align-items: center;
gap: 10px;
}
.caja-champions{
width: 10px;
height: 10px;
background: #0088ff;
margin-left: 0;
}
.caja-uefa{
width: 10px;
height: 10px;
background: #ff8c44;
margin-left: 0;
}
.caja-descenso{
width: 10px;
height: 10px;
background: #ff1f1f;
margin-left: 0;
}
@media(max-width:768px){
.titulo-tabla{
height: 35px;
font-size: 21px;
}
.instr {
display: block;
width: 100%;
margin: auto;
max-width: 150px;
margin-bottom: 28px;
}
.cuerpo-tabla {
font-size: 13px;
}
.convenciones{
flex-direction: column;
height: 80px;
margin: 8px 0 8px 0;
}
.agrupador-convenciones{
font-size: 12px;
}
}
Tabla de posiciones de la Premier League
async function cargarDatos() {
const sheetURL = "https://docs.google.com/spreadsheets/d/e/2PACX-1vSLMiWeXodXKjXgDldPltiM…;;
try {
const response = await fetch(sheetURL);
const data = await response.text();
let rows = data.split("\n").map(row => row.split(","));
const tablaBody = document.getElementById("tabla-body");
const tablaEncabezado = document.getElementById("tabla-encabezado");
tablaBody.innerHTML = "";
tablaEncabezado.innerHTML = "";
if (rows.length > 0) {
rows[0].forEach(encabezado => {
let th = document.createElement("th");
th.innerText = encabezado.trim();
tablaEncabezado.appendChild(th);
});
}
rows.slice(1).forEach((fila, i) => {
let tr = document.createElement("tr");
fila.forEach((celda, index) => {
let td = document.createElement("td");
if (celda.startsWith("http") && celda.includes(".png")) {
let img = document.createElement("img");
img.src = celda.trim();
img.alt = "Escudo";
img.classList.add("escudo");
td.appendChild(img);
} else {
td.innerText = celda;
}
if (index === 0 && i < 4) {
let div = document.createElement("div");
div.classList.add("barra-azul");
td.style.position = "relative";
td.appendChild(div);
}
if (index === 0 && i === 4 ) {
let div = document.createElement("div");
div.classList.add("barra-naranja");
td.style.position = "relative";
td.appendChild(div);
}
if (index === 0 && i < 20 && i >16) {
let div = document.createElement("div");
div.classList.add("barra-roja");
td.style.position = "relative";
td.appendChild(div);
}
if (["posición", "pts", "equipo"].includes(rows[0][index].trim().toLowerCase())) {
td.classList.add("bold-text");
}
tr.appendChild(td);
});
tablaBody.appendChild(tr);
});
} catch (error) {
console.error("Error al cargar los datos:", error);
}
}
cargarDatos();
Clasificación a Champions League
Clasificación a UEFA Europa League
Descenso