index.html 759 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  5. <title>OliveTin</title>
  6. <link rel = "stylesheet" type = "text/css" href = "style.css" />
  7. <link rel = "shortcut icon" type = "image/png" href = "OliveTinLogo.png" />
  8. </head>
  9. <body>
  10. <main>
  11. <div class = "group" id = "rootGroup" />
  12. </main>
  13. <footer>
  14. <p><img src = "OliveTinLogo.png" height = "1em" class = "logo" /> <a href = "http://github.com/jamesread/OliveTin" target = "_new">OliveTin</a></p>
  15. </footer>
  16. <template id = "tplActionButton">
  17. <p><span class = "icon">&#x1f4a9;</span></p>
  18. <p role = "title" class = "title">Untitled Button</p>
  19. </template>
  20. <script type = "module" src = "main.js"></script>
  21. </body>
  22. </html>