index.html 884 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>Vademecum</title>
  6. <link rel="stylesheet" href="css/spectre.min.css">
  7. <link rel="stylesheet" href="css/spectre-exp.min.css">
  8. <link rel="stylesheet" href="css/main.css">
  9. </head>
  10. <body>
  11. <!-- We will put our React component inside this div. -->
  12. <div class="hero eba-hero">
  13. <div class="hero-body">
  14. <h1>Vademecum</h1>
  15. </div>
  16. </div>
  17. <div id="vademecum"></div>
  18. <!-- Load React. -->
  19. <!-- Note: when deploying, replace "development.js" with "production.min.js". -->
  20. <script src="https://unpkg.com/react@16/umd/react.development.js" crossorigin></script>
  21. <script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" crossorigin></script>
  22. <!-- Load our React component. -->
  23. <script src="js/vademecum.js"></script>
  24. </body>
  25. </html>