text-small-caps-1-ref.html (447B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <style> 6 </style> 7 </head> 8 <body> 9 <canvas id="canvas1" width="400" height="400"></canvas> 10 <script type="text/javascript"> 11 var ctx = document.getElementById('canvas1').getContext('2d'); 12 ctx.font = "40px monospace"; 13 ctx.fillText("lowercase", 50, 50); 14 ctx.font = "32px monospace"; 15 ctx.fillText("SMALLCAPS", 50, 100); 16 ctx.font = "40px monospace"; 17 ctx.fillText("CAPITALS", 50, 150); 18 </script> 19 </body>