Random quote machine (Front End Intermediate Development Projects)

Hello, so it look like the example (CodePen) project for ‘random quote machine’ project is not functional,
Link to example project : https://codepen.io/freeCodeCamp/full/ONjoLe

FCC,thanks for everything you are doing to help us all… god bless :innocent:

Try outputting received data to console to understand why it fails.

    success: function(r) {
      if (typeof r === 'string') {
        console.log(r);
        r = JSON.parse(r); 
      }

Also for your fonts, you need to use https protocol.

thanks for the help, today it seems to work…