Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

components-test.html 741B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>RPG cards</title>
  5. <!-- CSS -->
  6. <link rel=" stylesheet" type="text/css" href="css/output.css">
  7. <link rel="stylesheet" type="text/css" href="css/card-size.css">
  8. <!-- Components -->
  9. <link rel="import" href="components/card-front.html">
  10. <link rel="import" href="components/card-title.html">
  11. </head>
  12. <body class="page-background">
  13. <card-front class="card-size-25x35" color="blue">
  14. <card-title size="13">Burning Hands</card-title>
  15. <card-contents>
  16. <card-subtitle>Mage spell</card-subtitle>
  17. <card-ruler></card-ruler>
  18. <card-description>Test</card-description>
  19. </card-contents>
  20. </card-front>
  21. </body>
  22. </html>