Advertisement
lemansky

Untitled

Apr 19th, 2022
1,196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.61 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <title>Document</title>
  7.     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  8.     <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css">
  9.     <script>
  10.         document.addEventListener('DOMContentLoaded', () => {
  11.             endpoint = 'latest'
  12.             access_key = 'your_key';
  13.  
  14.             fetch('http://data.fixer.io/api/' + endpoint + '?access_key=' + access_key);
  15.  
  16.         });
  17.     </script>
  18. </head>
  19. <body>
  20.     <div class="container">
  21.         <div class="row flex-column ">
  22.               <div class="col-6 mt-3 mx-auto">
  23.                 <div class="form-group">
  24.                     <select class="form-select user-select">
  25.                         <option selected="">Избери валута</option>
  26.                         <option value="1">Български лев</option>
  27.                         <option value="2">Щатски долар</option>
  28.                         <option value="3">Японска йена</option>
  29.                     </select>
  30.                     </div>
  31.                     <div class="form-group">
  32.                         <label for="">Сума в Евро</label>
  33.                         <input type="text" class="form-control from-field">
  34.                     </div>
  35.                     <div class="form-group">
  36.                         <label for="">Крайна сума</label>
  37.                         <input type="text" class="form-control to-field">
  38.                     </div>
  39.                     <div class="form-group d-grid my-3">
  40.                         <input type="button" class="btn btn-primary " value="Конвертирай">
  41.                     </div>
  42.               </div>
  43.         </div>
  44.     </div>
  45. </body>
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement