12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <!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>Store</title>
- <style>
- body {
- overflow: hidden;
- box-sizing: border-box;
- }
- #logo {
- display: flex;
- width: 100px;
- margin: auto;
- }
- </style>
- </head>
- <body>
- <header style="background-color: lightgray;">
- <a>
- <img src="images/logo.png" alt="logo" id="logo">
- </a>
- </header>
- <div class="wrapper">
- <hr>
- <select id="product">
- <option value="beer" id="pivo1">Beer</option>
- <option value="chips" id="chips1">Chips</option>
- <option value="smoke" id="sigi1">Smoke</option>
- </select>
- <input type="number" id="number" placeholder="Enter the amount...">
- <button id="button">Buy</button>
- </div>
- <div class="availability">
- <h1>Goods:</h1>
- <div style="display: flex; justify-content:space-around;">
- <div class="pivo2">
- <img src="images/beer.png" alt="" style="max-height: 200px; max-width: 200px">
- <h2 style="text-align: center">Beer: <span id="pivo"></span></h2>
- <h2 style="text-align: center">Price: <span id="pivoK"></span></h2>
- </div>
- <div class="chips2">
- <img src="images/chips.png" alt="" style="max-height: 200px; max-width: 200px">
- <h2 style="text-align: center">Chips: <span id="chips"></span></h2>
- <h2 style="text-align: center">Price: <span id="chipsK"></span></h2>
- </div>
- <div class="sigi2">
- <img src="images/smoke.png" alt="" style="max-height: 200px; max-width: 200px">
- <h2 style="text-align: center">Smoke: <span id="sigi"></span></h2>
- <h2 style="text-align: center">Price: <span id="sigiK"></span></h2>
- </div>
- </div>
- </div>
- <hr>
- <div style="display: flex; justify-content:space-between;">
- <div class="cashbox">
- <h2>Paydesk: <span id="kassa"></span></h2>
- <img src="images/cash-machine.png" alt="" style="height: 100px">
- </div>
- <div class="wallet">
- <h2>Cash: <span id="money"></span></h2>
- <img src="images/wallet.png" alt="" style="height: 100px; margin-left: auto; display: block">
- </div>
- <script src="index.js"></script>
- </div>
- </body>
- </html>
|