Quotes Valley

Quotes Valley is a quote generator using API

Here is the API, that I have used: API_URL

How to fetch data using Javascript?

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

Resources

More Fetch Information

Fontawesome Icon

Google Fonts