script.js 343 B

123456789101112131415
  1. const text = document.getElementById("text")
  2. const button = document.getElementById("butoun")
  3. function randomQuote(){
  4. fetch('https://api.quotable.io/random')
  5. .then(response => response.json())
  6. .then(data => {
  7. text.textContent = data.content;
  8. });
  9. }
  10. randomQuote();
  11. button.addEventListener('click' , () => {
  12. randomQuote();
  13. });