Update index.html
Browse files- index.html +16 -12
index.html
CHANGED
|
@@ -21,20 +21,24 @@
|
|
| 21 |
|
| 22 |
<section class="content">
|
| 23 |
<div class="converter-container">
|
| 24 |
-
<
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
|