syntheticbold-rotated.html 516 B

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title>rotated synthetic bold</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <style type="text/css">
  7. @font-face {
  8. font-family: libertine;
  9. src: url(../fonts/LinLibertine_Re-4.7.5.woff);
  10. }
  11. body {
  12. margin: 150px 0px;
  13. font-size: 800%;
  14. }
  15. p { margin: 0; }
  16. .test {
  17. font-family: libertine;
  18. display: inline-block;
  19. transform: rotate(90deg);
  20. font-weight: bold;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <p><span class="test">uh oh!</span></p>
  26. </body>
  27. </html>