JSFiddle - React, Tailwind, and code Playground

HTML

<h1>socialico</h1>

CSS

@font-face {
    font-family: 'socialico';
    src: url('http://qwikis-staging.qwiki.com/tommy/socialico.ttf');
}

body {
    font-family: socialico;
    font-size: 2em;
}

JavaScript

var canvas = document.createElement( 'canvas' );
var context = canvas.getContext( '2d' );
var img = document.createElement( 'img' );
document.body.appendChild( canvas );


$.ajax({
        type: "GET",
        url: "http://staging.qp1.ikiwq.com/iphone-test-1/media/images/640x960/0e93aab6eecd849a3c6a1a50ff8b0601.jpg",
        crossDomain: true,
        xhrFields: {
           withCredentials: true
        },
        success: function( response ){
            console.log( "Yes!: ", response );
        }
    });