JSFiddle - React, Tailwind, and code Playground

by ksoncan34

JavaScript

var canvas = document.getElementById("e");
  var context = canvas.getContext("2d");
  context.fillStyle = "blue";
  context.font = "bold 16px Arial";
  context.fillText("Zibri", 100, 100);
</script>