Canvas Text
Preview
Code
<canvas id="c4" width="200" height="100" style="border:1px solid #000;"></canvas>
<script>
var ctx = document.getElementById("c4").getContext("2d");
ctx.font = "20px Arial";
ctx.fillText("Hello Canvas",20,50);
</script>