index.html 957 B

12345678910111213141516171819202122232425262728293031323334
  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>Currency Calculator </title>
  8. <link rel="stylesheet" href="style.css">
  9. </head>
  10. <body>
  11. <div class="container">
  12. <div class="calc__wrapper">
  13. <h3>Обменный калькулятор</h3>
  14. <div class="calc__item">
  15. <label for="summ">Сумма для обмена</label>
  16. <input type="number" name="summ">
  17. <span class="cur__name"></span>
  18. </div>
  19. <h3> Доступные валюты </h3>
  20. <div class="cur__wrapper">
  21. </div>
  22. <div class="outer"> </div>
  23. <button class="btn"> Очистить </button>
  24. </div>
  25. </div>
  26. <script src="script.js"></script>
  27. </body>
  28. </html>