GarGerry commited on
Commit
cc94bf7
ยท
verified ยท
1 Parent(s): 6bf2ecf

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +16 -12
index.html CHANGED
@@ -21,20 +21,24 @@
21
 
22
  <section class="content">
23
  <div class="converter-container">
24
- <input type="number" id="amount" placeholder="Enter amount">
25
- <select id="from-currency">
26
- <option value="USD">๐Ÿ‡บ๐Ÿ‡ธ USD</option>
27
- <option value="EUR">๐Ÿ‡ช๐Ÿ‡บ EUR</option>
28
- <!-- Add other currencies here -->
29
- </select>
30
- <select id="to-currency">
31
- <option value="EUR">๐Ÿ‡ช๐Ÿ‡บ EUR</option>
32
- <option value="USD">๐Ÿ‡บ๐Ÿ‡ธ USD</option>
33
- <!-- Add other currencies here -->
34
- </select>
 
 
 
 
 
35
  <button id="convert-btn">Convert</button>
36
  <p id="result"></p>
37
- <button id="swap-btn" onclick="swapCurrencies()">Swap</button>
38
  </div>
39
  </section>
40
 
 
21
 
22
  <section class="content">
23
  <div class="converter-container">
24
+ <div class="currency-box">
25
+ <input type="number" id="amount" placeholder="Enter amount">
26
+ </div>
27
+ <div class="currency-select">
28
+ <select id="from-currency">
29
+ <option value="USD">๐Ÿ‡บ๐Ÿ‡ธ USD</option>
30
+ <option value="EUR">๐Ÿ‡ช๐Ÿ‡บ EUR</option>
31
+ <!-- Add other currencies here -->
32
+ </select>
33
+ <button id="swap-btn" onclick="swapCurrencies()">๐Ÿ”„</button>
34
+ <select id="to-currency">
35
+ <option value="EUR">๐Ÿ‡ช๐Ÿ‡บ EUR</option>
36
+ <option value="USD">๐Ÿ‡บ๐Ÿ‡ธ USD</option>
37
+ <!-- Add other currencies here -->
38
+ </select>
39
+ </div>
40
  <button id="convert-btn">Convert</button>
41
  <p id="result"></p>
 
42
  </div>
43
  </section>
44