Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> </head> <body> <canvas id="exampleCanvas" width="350" height="110" style="border:1px solid #dddddd;"> HTML5 canvas tag is not supported by your browser. </canvas> <script> var c = document.getElementById("exampleCanvas"); var ctx = c.getContext("2d"); ctx.font = "40px Arial"; ctx.fillStyle = '#262ac7'; ctx.fillText("Canvas Text", 55, 65); </script> </body> </html>