Drawing text outline
<!doctype html> <html lang="en"> <body> <div style="position: absolute; top: 50px; left: 50px;"> <canvas id="canvas" width="500" height="500"> Your browser does not support the HTML 5 Canvas. </canvas>/* www. j av a2s .c o m*/ <script type="text/javascript"> let theCanvas = document.getElementById('canvas'); let context = theCanvas.getContext('2d'); context.font = 'italic 40px sans-serif'; context.strokeText("Hello!", 50, 400); </script> </div> </body> </html>