12345678910111213141516171819202122 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>RPG cards</title>
- <!-- CSS -->
- <link rel=" stylesheet" type="text/css" href="css/output.css">
- <link rel="stylesheet" type="text/css" href="css/card-size.css">
- <!-- Components -->
- <link rel="import" href="components/card-front.html">
- <link rel="import" href="components/card-title.html">
- </head>
- <body class="page-background">
- <card-front class="card-size-25x35" color="blue">
- <card-title size="13">Burning Hands</card-title>
- <card-contents>
- <card-subtitle>Mage spell</card-subtitle>
- <card-ruler></card-ruler>
- <card-description>Test</card-description>
- </card-contents>
- </card-front>
- </body>
- </html>
|