1<!doctype html>
2<html>
3<head>
4<body>
5<canvas></canvas>
6<script>
7var canvas=document.querySelector('canvas');
8var context=canvas.getContext(2d);
9context.textAlign = 'center';
10 context.fillStyle = 'blue';
11 context.fillText('Helllo Word!', 10, 50);
12 </script>
13 </body>
14 </head>
15 </html>