index.html 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Test</title>
  8. <link rel="stylesheet" href="css/tailwind.min.css">
  9. <link rel="stylesheet" href="css/lineicons.css">
  10. </head>
  11. <body>
  12. <header class="text-gray-600 body-font">
  13. <div class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center">
  14. <a class="flex title-font font-medium items-center text-gray-900 mb-4 md:mb-0">
  15. <img src="img/node-js-svgrepo-com.svg" alt="">
  16. <span class="ml-3 text-xl">Test</span></a>
  17. <nav class="md:ml-auto flex flex-wrap items-center text-base justify-center">
  18. <a class="mr-5 hover:text-gray-900">First Link</a>
  19. <a class="mr-5 hover:text-gray-900">Second Link</a>
  20. <a class="mr-5 hover:text-gray-900">Third Link</a>
  21. </nav>
  22. </div>
  23. </header>
  24. <section class="text-gray-600 body-font">
  25. <div class="container mx-auto flex px-5 py-24 items-center justify-center flex-col">
  26. <img id="title--img" class="lg:w-2/6 md:w-3/6 w-5/6 mb-10 object-cover object-center rounded" alt="hero" src="img/720x600.png">
  27. <div class="text-center lg:w-2/3 w-full">
  28. <h1 id="title--name" class="title-font sm:text-4xl text-3xl mb-4 font-medium text-gray-900">Microdosing synth tattooed vexillologist</h1>
  29. <h3 id="title--job" class="title-font sm:text-2xl text-2xl mb-4 font-medium text-red-900">Lorem, ipsum dolor.</h3>
  30. <p id="title--text" class="mb-8 leading-relaxed">Meggings kinfolk echo park stumptown DIY, kale chips beard jianbing tousled. Chambray dreamcatcher trust fund, kitsch vice godard disrupt ramps hexagon mustache umami snackwave tilde chillwave ugh. Pour-over meditation PBR&amp;B pickled ennui celiac mlkshk freegan photo booth af fingerstache pitchfork.</p>
  31. <div class="flex justify-center gap-2">
  32. <button id="btn--prev" class="inline-flex items-center text-white bg-indigo-500 border-0 py-2 px-6 focus:outline-none hover:bg-indigo-600 rounded text-lg"><i class="lni lni-chevron-left"></i>Туда</button>
  33. <button id="btn--rnd" class="inline-flex items-center text-white bg-green-500 border-0 py-2 px-6 focus:outline-none hover:bg-green-600 rounded text-lg">...</button>
  34. <button id="btn--next" class="inline-flex items-center text-white bg-indigo-500 border-0 py-2 px-6 focus:outline-none hover:bg-indigo-600 rounded text-lg">Сюда<i class="lni lni-chevron-right"></i></button>
  35. </div>
  36. </div>
  37. </div>
  38. </section>
  39. <script src="js/main.js"></script>
  40. </body>
  41. </html>