core.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Reservationer</title>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, 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. </body>
  39. </html>