This is a small random famous quote generator. It uses the Andruxnet random famous quote API from Mashape.
To make the thing work put your key in js/script.js as shown below:
...
// This function fetches a new random quote from the specified api and
// updates the page
function updateQuote() {
$.ajax({
headers: {
'X-Mashape-Key': 'yourKEY',
Accept: 'application/json',
'Content-Type': 'application/x-www-form-urlencoded',
},
...