bitmapfont.rml 401 B

12345678910111213141516171819202122232425262728
  1. <rml>
  2. <head>
  3. <title>Demo</title>
  4. <link type="text/template" href="window.rml" />
  5. <style>
  6. body
  7. {
  8. width: 300px;
  9. height: 225px;
  10. font-family: Arial;
  11. margin: auto;
  12. }
  13. div#title_bar div#icon
  14. {
  15. display: none;
  16. }
  17. div#content
  18. {
  19. text-align: left;
  20. }
  21. </style>
  22. </head>
  23. <body template="window">
  24. This is a bitmap font<br/>sample.
  25. </body>
  26. </rml>