728x90 AdSpace

Latest News

Games

Fashion

Sports

Movies

News

// احصل على قائمة بمباريات كرة القدم من موقع Soccerway async function getMatches() { const url = "https://www.soccerway.com/"; const response = await fetch(url); const matches = await response.json(); for (const match of matches) { match.result = match.homeScore + " - " + match.awayScore; } return matches; } // اعرض مباريات كرة القدم function renderMatches(matches) { const ul = document.createElement("ul"); for (const match of matches) { const li = document.createElement("li"); li.innerHTML = `

${match.homeTeam} - ${match.awayTeam} (${match.result})

${match.date} - ${match.time}

${match.competition}

${match.stadium}

`; ul.appendChild(li); } document.body.appendChild(ul); } // احصل على قائمة بمباريات كرة القدم وعرضها const matches = await getMatches(); renderMatches(matches);

Fashion

Movies Post

Travel

Music

Games

Wednesday, March 25, 2015