display.html 691 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <link rel="stylesheet" href="/currency/style">
  6. <title>Lee Morgan</title>
  7. </head>
  8. <body>
  9. <h1>Currencies from around the world</h1>
  10. <div id="container">
  11. <template id="currency">
  12. <div class="currency">
  13. <p class="location"></p>
  14. <p class="year"></p>
  15. <img class="fontImage">
  16. <img class="backImage">
  17. <p class="comment"></p>
  18. </div>
  19. </template>
  20. </div>
  21. <script>
  22. </script>
  23. </body>
  24. </html>