1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!DOCTYPE html>
- <html lang="ru">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="stylesheet" href="./css/style.css" type="text/css"/>
- <link rel="stylesheet" href="./css/style_main_page.css" type="text/css"/>
- <link rel="stylesheet" href="./css/adaptation_style.css" type="text/css"/>
- <link rel="icon" type="image/x-icon" href="./images/favicon.ico">
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
- <script src="./js/main.js"></script>
- <title>ShariX Open</title>
- </head>
- <body style="justify-content: center;">
- <header>
- <!--Image DRIVE-->
- <img class="drive-image" alt="ShariX Open"/>
- <!--URL Оставить заявку на подключение-->
- <a class="submit-connect" href="index.html">Оставить заявку на подключение</a>
- <!--Button Войти-->
- <button id="button-enter">Войти</button>
- <!--Bar Menu Button-->
- <div id="bar-menu-button">
- <div class="bar-menu-line"></div>
- <div class="bar-menu-line"></div>
- <div class="bar-menu-line"></div>
- </div>
- <!--Bar Menu-->
- <div id="bar-menu">
- <a class="submit-connect-menu" href="index.html">Оставить заявку на подключение</a>
- <!--Button Войти-->
- <button id="button-enter-menu">Войти</button>
- </div>
- </header>
- <div id="container">
- <!--
- Page container.
- This is where the site pages will be located.
- -->
- </div>
- <footer >
- <img class="drive-image" alt="Drive"/>
- <table class="footer-table">
- <thead>
- <tr>
- <th>О платформе</th>
- <th>Личный кабинет</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <th><a href="index.html">Платформа ShariX</a></th>
- <th><a href="index.html">Войти</a></th>
- </tr>
- <tr>
- <th><a href="mailto:drive@sharix-app.org">Оставить заявку на подключение</a></th>
- <th><a href="index.html">Политика конфиденциальности</a></th>
- </tr>
- </tbody>
- </table>
- </footer>
- <div class="sharix-corp">© 2022 ShariX</div>
- </body>
- </html>
|