svg.rml 371 B

12345678910111213141516171819202122232425
  1. <rml>
  2. <head>
  3. <title>Demo</title>
  4. <link type="text/template" href="/assets/window.rml" />
  5. <style>
  6. body
  7. {
  8. width: 300px;
  9. height: 225px;
  10. margin: auto;
  11. }
  12. svg {
  13. display: block;
  14. max-width: 80%;
  15. max-height: 80%;
  16. margin: auto;
  17. }
  18. </style>
  19. </head>
  20. <body template="window">
  21. <svg src="tiger.svg"></svg>
  22. </body>
  23. </rml>