core.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Reservationer</title>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content= "width=device-width, user-scalable=no, initial-scale=1.0">
  7. <meta name="description" content="Simple reservations app.">
  8. <link rel="preconnect" href="https://fonts.googleapis.com">
  9. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  10. <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Cal+Sans&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap">
  11. <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap">
  12. <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
  13. <script src="app/bundle/app.js" type="text/javascript"></script>
  14. <link rel="stylesheet" type="text/css" href="app/bundle/theme.css">
  15. </head>
  16. <body>
  17. <main>
  18. <nav>
  19. <div class="top-bar">
  20. <div class="left">
  21. <form class="search">
  22. <input type="text" name="content" placeholder="Search" class="search-content">
  23. <select name="search-by"></select>
  24. <button type="submit" name="submit" class="search-submit material-icons">search</button>
  25. </form>
  26. </div>
  27. <div class="right">
  28. </div>
  29. </div>
  30. </nav>
  31. <div class="products">
  32. <div class="top-bar-spacing"></div>
  33. <div class="title">
  34. <h1 class="search-title"></h1>
  35. </div>
  36. </div>
  37. </main>
  38. <div class="site-manage">
  39. <button class="scroll-up-button material-icons">arrow_upward</button>
  40. <button class="reverse-colors material-icons">invert_colors</button>
  41. </div>
  42. </body>
  43. </html>