-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
33 lines (29 loc) · 1.02 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
document
.getElementById("BtnVoir")
.addEventListener("click", function () {
fetch("https://restcountries.com/v3.1/region/africa")
.then((response) => response.json())
.then((data) => {
displayCountries(data);
console.log(data)
})
.catch((error) => {
console.error("Une erreur s'est produite:", error);
});
});
function displayCountries(countries) {
const countriesList = document.getElementById("countriesList");
countriesList.innerHTML = "";
countries.forEach((country) => {
const countryCard = document.createElement("div");
countryCard.classList.add("country-card");
const countryName = document.createElement("h3");
countryName.textContent = country.name.common;
const countryFlag = document.createElement("img");
countryFlag.src = country.flags.svg;
countryFlag.alt = country.name.common,'Drapeau';
countryCard.appendChild(countryName);
countryCard.appendChild(countryFlag);
countriesList.appendChild(countryCard);
});
}