Por 9.99€ al mes tendrás acceso completo a todos los cursos. Sin matrícula ni permanencia.
<canvas id="canvas" width="400px" height="400px" style="border:2px solid black" />
<script>
var c = document.getElementById("canvas");
var ctx = c.getContext("2d");
ctx.font = "40px Arial";
ctx.fillText(“Hola mundo”, 50, 50);
</script>