Update index.html
Browse files- index.html +6 -5
index.html
CHANGED
@@ -27,11 +27,12 @@
|
|
27 |
<label for="amount">Amount:</label>
|
28 |
<input type="number" id="amount" placeholder="Enter amount">
|
29 |
</div>
|
|
|
30 |
<!-- From & To Currency -->
|
31 |
<div class="currency-select">
|
32 |
<div class="currency-group">
|
33 |
-
<label for="from
|
34 |
-
<select id="from
|
35 |
<option value="USD">🇺🇸 USD</option>
|
36 |
<option value="EUR">🇪🇺 EUR</option>
|
37 |
<!-- Add other currencies here -->
|
@@ -41,8 +42,8 @@
|
|
41 |
<button id="swap-btn" onclick="swapCurrencies()">⇅</button>
|
42 |
|
43 |
<div class="currency-group">
|
44 |
-
<label for="to
|
45 |
-
<select id="to
|
46 |
<option value="EUR">🇪🇺 EUR</option>
|
47 |
<option value="USD">🇺🇸 USD</option>
|
48 |
<!-- Add other currencies here -->
|
@@ -77,7 +78,7 @@
|
|
77 |
<div class="footer-content">
|
78 |
<p>About</p>
|
79 |
<p>Social Media</p>
|
80 |
-
<p>Copyright ©
|
81 |
</div>
|
82 |
</footer>
|
83 |
|
|
|
27 |
<label for="amount">Amount:</label>
|
28 |
<input type="number" id="amount" placeholder="Enter amount">
|
29 |
</div>
|
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 -->
|
|
|
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 -->
|
|
|
78 |
<div class="footer-content">
|
79 |
<p>About</p>
|
80 |
<p>Social Media</p>
|
81 |
+
<p>Copyright © 2025</p>
|
82 |
</div>
|
83 |
</footer>
|
84 |
|