Quotes Valley is a quote generator using API
Here is the API, that I have used: API_URL
const API_URL = "Your_url_goes_here";
// fetch API
fetch(API_URL)
.then((response) => response.json())
.then((data) => console.log(data));
// Inspect dev tools (ctrl + shift + I) console to view data