Test Rendering Arimo - Bold


/ Published in: HTML
Save to your folder(s)

Just a test...


Copy this code and paste it in your HTML
  1. <head>
  2. <title>Test rendering of Arimo Bold</title>
  3. <style type="text/css">
  4. /* Example CSS class using Arimo Bold */
  5. h1.rfExample {
  6. font-family: "Arimo Bold", Arial;
  7. font-size: 40px;
  8. color: #99f;
  9. }
  10. </style>
  11. </head>
  12. <body>
  13. <!-- Now in the body we just use our defined class and flag it as a "renderedFont" -->
  14. <h1 class="rfExample renderedFont">Arimo Bold</h1>
  15.  
  16. The above heading text is a rendered font using the "Arimo Bold" font.
  17.  
  18. <!-- Include JQuery from the Google CDN -->
  19. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
  20. <!-- Include the RenderedFont rendering engine (using the #free account key) -->
  21. <script type="text/javascript" src='http://cdn.renderedfont.com/js/renderedfont-0.8.min.js#free'></script>
  22.  
  23. </body>
  24. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.