GarGerry commited on
Commit
2d6d9b3
ยท
verified ยท
1 Parent(s): 5f2420a

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +18 -18
index.html CHANGED
@@ -30,26 +30,26 @@
30
 
31
  <!-- From & To Currency -->
32
  <div class="currency-select">
33
- <div class="currency-group">
34
- <label for="from-currency">From:</label>
35
- <select id="from-currency">
36
- <option value="USD">๐Ÿ‡บ๐Ÿ‡ธ USD</option>
37
- <option value="EUR">๐Ÿ‡ช๐Ÿ‡บ EUR</option>
38
- <!-- Add other currencies here -->
39
- </select>
40
- </div>
41
 
42
- <button id="swap-btn" onclick="swapCurrencies()">โ‡…</button>
43
 
44
- <div class="currency-group">
45
- <label for="to-currency">To:</label>
46
- <select id="to-currency">
47
- <option value="EUR">๐Ÿ‡ช๐Ÿ‡บ EUR</option>
48
- <option value="USD">๐Ÿ‡บ๐Ÿ‡ธ USD</option>
49
- <!-- Add other currencies here -->
50
- </select>
51
- </div>
52
- </div>
53
 
54
  <button id="convert-btn" onclick="convertCurrency()">Convert</button>
55
  <p id="result"></p>
 
30
 
31
  <!-- From & To Currency -->
32
  <div class="currency-select">
33
+ <div class="currency-group">
34
+ <label for="from">From:</label>
35
+ <select id="from">
36
+ <option value="USD">๐Ÿ‡บ๐Ÿ‡ธ USD</option>
37
+ <option value="EUR">๐Ÿ‡ช๐Ÿ‡บ EUR</option>
38
+ <!-- Add other currencies here -->
39
+ </select>
40
+ </div>
41
 
42
+ <button id="swap-btn" onclick="swapCurrencies()">โ‡…</button>
43
 
44
+ <div class="currency-group">
45
+ <label for="to">To:</label>
46
+ <select id="to">
47
+ <option value="EUR">๐Ÿ‡ช๐Ÿ‡บ EUR</option>
48
+ <option value="USD">๐Ÿ‡บ๐Ÿ‡ธ USD</option>
49
+ <!-- Add other currencies here -->
50
+ </select>
51
+ </div>
52
+ </div>
53
 
54
  <button id="convert-btn" onclick="convertCurrency()">Convert</button>
55
  <p id="result"></p>