JSFiddle - React, Tailwind, and code Playground
by Jagi
HTML
<canvas id="canvas" width="400" height="400"></canvas>
CSS
@import url(http://fonts.googleapis.com/css?family=Roboto);
body { background: gray; }
canvas { background: white; }
JavaScript
setTimeout(function () {
var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
ctx.font = 'Bold 100px Roboto';
ctx.fillText('Tizen', 100, 100);
}, 1000);