| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Reservationer</title>
-
- <meta charset="UTF-8">
- <meta name="viewport" content= "width=device-width, user-scalable=no, 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>
- <div class="site-manage">
- <button class="scroll-up-button material-icons">arrow_upward</button>
- <button class="reverse-colors material-icons">invert_colors</button>
- </div>
- </body>
- </html>
|