| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Reservationer</title>
-
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="description" content="Simple reservations app.">
- <link rel="preconnect" href="https://fonts.googleapis.com">
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
- <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Cal+Sans&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap">
- <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap">
- <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
- <script src="app/bundle/app.js" type="text/javascript"></script>
- <link rel="stylesheet" type="text/css" href="app/bundle/theme.css">
- </head>
- <body>
- <main>
- <nav>
- <div class="top-bar">
- <div class="left">
- <form class="search">
- <input type="text" name="content" placeholder="Search" class="search-content">
- <select name="search-by"></select>
- <button type="submit" name="submit" class="search-submit material-icons">search</button>
- </form>
- </div>
- <div class="right">
- </div>
- </div>
- </nav>
- <div class="products">
- <div class="top-bar-spacing"></div>
- <div class="title">
- <h1 class="search-title"></h1>
- </div>
- </div>
- </main>
- </body>
- </html>
|