index.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width" />
  6. <title>Другой тайтл ПРИВЕТ 17й</title>
  7. </head>
  8. <style>
  9. .wrapper{
  10. display: flex;
  11. justify-content: space-between;
  12. background-color: silver;
  13. }
  14. .content{
  15. display: flex;
  16. flex-wrap: wrap;
  17. justify-content: center;
  18. margin-top: 50px;
  19. }
  20. #stock{
  21. display: flex;
  22. font-size: 20px;
  23. }
  24. #product{
  25. margin: 0.2%;
  26. padding: 50px;
  27. font-size: 15px;
  28. }
  29. .text{
  30. display: flex;
  31. }
  32. #product:last-child{
  33. display: none;
  34. }
  35. #buy{
  36. margin: 20px;
  37. padding: 20px 50px;
  38. }
  39. #total{
  40. width: 200px;
  41. height: 50px;
  42. font-size: 20px;
  43. margin-top: 1%;
  44. color: red;
  45. }
  46. </style>
  47. <body>
  48. <div class="wrapper">
  49. <h1>Laryok Keeper</h1>
  50. <button id="total">КАСА</button>
  51. </div>
  52. <div class="content" id = 'content'>
  53. </div>
  54. <div class="text" id="text">
  55. </div>
  56. <h1>Наявність: </h1>
  57. <div class="stock_box" id="stock"></div>
  58. <div class="buy_content" id="buy_content">
  59. <button class="button" id="buy">СПЛАТИТИ</button>
  60. </div>
  61. <script src='index.js'></script>
  62. </body>
  63. </html>