123456789101112131415161718192021222324252627282930313233343536373839 |
- <!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>Currency Calculator </title>
- <link rel="stylesheet" href="style.css">
- </head>
- <body>
- <div class="container">
- <div class="calc__wrapper">
- <h3>Обменный калькулятор</h3>
- <div class="calc__item">
- <label for="summ">Сумма для обмена</label>
- <input type="number" name="summ">
- <span class="cur__name"></span>
- </div>
- <h3> Доступные валюты </h3>
- <div class="cur__wrapper">
- </div>
-
-
-
- <div class="outer"> </div>
- <button class="btn"> Очистить </button>
- </div>
-
- </div>
- <script src="script.js"></script>
- </body>
- </html>
|