File size: 293 Bytes
b95c046
9dd4b85
b95c046
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
async function loadFact() {
  const response = await fetch("https://ibrahim321123-fact-api.hf.space/api/random-fact");
  const data = await response.json();
  const container = document.getElementById("fact-widget");
  if (container) {
    container.innerText = data.fact;
  }
}

loadFact();