123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <!DOCTYPE html>
- <html lang="en">
- <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">
- <title>Document</title>
- <style>
- .container {
- width: 1000px;
- margin: 0 auto;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- input, select, img {
- margin-right: 15px;
- }
- img {
- width: 250px;
- }
- table {
- margin: 0 auto;
- }
- .laryok-description {
- width: 450px;
- margin-bottom: 15px;
- }
- .laryok-showcase {
- display: flex;
- align-items: center;
- justify-content: center;
- margin: 15px 0;
- }
- </style>
- </head>
- <body>
- <div class="container" id="storeContainer">
- <div class="laryok-description">
- <h1>Добро пожаловать в Laryok!</h1>
- <p>У нас есть: <span id='beerQuantity'></span> бутылок пива, <span id='chipsQuantity'></span> пачек чипсов, <span id='cigsQuantity'></span> пачек сигарет,<del> 2 пакетика травы, 75 ампул мескалина, 5 пакетиков Диетиламид лизергиновой кислоты или ЛСД, солонка наполовину наполненная кокаином и целое море разноцветных амфетаминов, барбитуратов и транквилизаторов...</del>, что брать будете?</p>
- <table id="pricelist" border="1">
- <caption>Прайслист</caption>
- </table>
- <div class="laryok-showcase" id="showcase"></div>
- </div>
- <div class="laryok-interface">
- <select id="goods"></select>
- <input type="number" id="quantity" placeholder="сколько штук?"/>
- <input type="text" id="money" placeholder="сколько денег даете?"/>
- <button id="buy">купить</button>
- </div>
- </div>
- <script src="main.js"></script>
- </body>
- </html>
|