index.html 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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>Document</title>
  8. <style>
  9. .container {
  10. width: 1000px;
  11. margin: 0 auto;
  12. display: flex;
  13. flex-direction: column;
  14. align-items: center;
  15. justify-content: center;
  16. }
  17. input, select, img {
  18. margin-right: 15px;
  19. }
  20. img {
  21. width: 250px;
  22. }
  23. table {
  24. margin: 0 auto;
  25. }
  26. .laryok-description {
  27. width: 450px;
  28. margin-bottom: 15px;
  29. }
  30. .laryok-showcase {
  31. display: flex;
  32. align-items: center;
  33. justify-content: center;
  34. margin: 15px 0;
  35. }
  36. </style>
  37. </head>
  38. <body>
  39. <div class="container" id="storeContainer">
  40. <div class="laryok-description">
  41. <h1>Добро пожаловать в Laryok!</h1>
  42. <p>У нас есть: <span id='beerQuantity'></span> бутылок пива, <span id='chipsQuantity'></span> пачек чипсов, <span id='cigsQuantity'></span> пачек сигарет,<del> 2 пакетика травы, 75 ампул мескалина, 5 пакетиков Диетиламид лизергиновой кислоты или ЛСД, солонка наполовину наполненная кокаином и целое море разноцветных амфетаминов, барбитуратов и транквилизаторов...</del>, что брать будете?</p>
  43. <table id="pricelist" border="1">
  44. <caption>Прайслист</caption>
  45. </table>
  46. <div class="laryok-showcase" id="showcase"></div>
  47. </div>
  48. <div class="laryok-interface">
  49. <select id="goods"></select>
  50. <input type="number" id="quantity" placeholder="сколько штук?"/>
  51. <input type="text" id="money" placeholder="сколько денег даете?"/>
  52. <button id="buy">купить</button>
  53. </div>
  54. </div>
  55. <script src="main.js"></script>
  56. </body>
  57. </html>