| 1234567891011121314151617181920212223242526272829 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8" />
- <title>Vademecum</title>
- <link rel="stylesheet" href="css/spectre.min.css">
- <link rel="stylesheet" href="css/spectre-exp.min.css">
- <link rel="stylesheet" href="css/main.css">
- </head>
- <body>
- <!-- We will put our React component inside this div. -->
- <div class="hero eba-hero">
- <div class="hero-body">
- <h1>Vademecum</h1>
- </div>
- </div>
- <div id="vademecum"></div>
- <!-- Load React. -->
- <!-- Note: when deploying, replace "development.js" with "production.min.js". -->
- <script src="https://unpkg.com/react@16/umd/react.development.js" crossorigin></script>
- <script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" crossorigin></script>
- <!-- Load our React component. -->
- <script src="js/vademecum.js"></script>
- </body>
- </html>
|