text-small-caps-1.html 469 B

1234567891011121314151617181920
  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 = "small-caps 40px monospace";
  15. ctx.fillText("smallcaps", 50, 100);
  16. ctx.font = "small-caps 40px monospace";
  17. ctx.fillText("CAPITALS", 50, 150);
  18. </script>
  19. </body>