Spaces:
Running
Running
Update index.html
Browse files- index.html +16 -12
index.html
CHANGED
@@ -29,21 +29,25 @@
|
|
29 |
</div>
|
30 |
<!-- From & To Currency -->
|
31 |
<div class="currency-select">
|
32 |
-
<
|
33 |
-
|
34 |
-
<
|
35 |
-
|
36 |
-
|
37 |
-
|
|
|
|
|
38 |
|
39 |
<button id="swap-btn" onclick="swapCurrencies()">โ
</button>
|
40 |
|
41 |
-
<
|
42 |
-
|
43 |
-
<
|
44 |
-
|
45 |
-
|
46 |
-
|
|
|
|
|
47 |
</div>
|
48 |
|
49 |
<button id="convert-btn">Convert</button>
|
|
|
29 |
</div>
|
30 |
<!-- From & To Currency -->
|
31 |
<div class="currency-select">
|
32 |
+
<div class="currency-group">
|
33 |
+
<label for="from-currency">From:</label>
|
34 |
+
<select id="from-currency">
|
35 |
+
<option value="USD">๐บ๐ธ USD</option>
|
36 |
+
<option value="EUR">๐ช๐บ EUR</option>
|
37 |
+
<!-- Add other currencies here -->
|
38 |
+
</select>
|
39 |
+
</div>
|
40 |
|
41 |
<button id="swap-btn" onclick="swapCurrencies()">โ
</button>
|
42 |
|
43 |
+
<div class="currency-group">
|
44 |
+
<label for="to-currency">To:</label>
|
45 |
+
<select id="to-currency">
|
46 |
+
<option value="EUR">๐ช๐บ EUR</option>
|
47 |
+
<option value="USD">๐บ๐ธ USD</option>
|
48 |
+
<!-- Add other currencies here -->
|
49 |
+
</select>
|
50 |
+
</div>
|
51 |
</div>
|
52 |
|
53 |
<button id="convert-btn">Convert</button>
|