Spaces:
Running
Running
Update index.html
Browse files- index.html +7 -1
index.html
CHANGED
@@ -10,7 +10,10 @@
|
|
10 |
</head>
|
11 |
<body>
|
12 |
<div class="container">
|
13 |
-
<
|
|
|
|
|
|
|
14 |
<form id="currencyForm">
|
15 |
<input type="number" id="amount" placeholder="Enter amount" required>
|
16 |
<div class="currency-selectors">
|
@@ -40,6 +43,7 @@
|
|
40 |
</div>
|
41 |
<button type="submit">Convert</button>
|
42 |
</form>
|
|
|
43 |
<!-- Menambahkan tempat untuk ikon mata uang dan hasil konversi -->
|
44 |
<div id="result">
|
45 |
<i id="fromCurrencyIcon" class="fas"></i> <!-- Ikon untuk mata uang asal -->
|
@@ -47,9 +51,11 @@
|
|
47 |
<i id="toCurrencyIcon" class="fas"></i> <!-- Ikon untuk mata uang tujuan -->
|
48 |
</div>
|
49 |
</div>
|
|
|
50 |
<footer>
|
51 |
<p>© 2025 Teggar Eka Mustaqim Sitanggang. All rights reserved.</p>
|
52 |
</footer>
|
|
|
53 |
<script src="script.js"></script>
|
54 |
</body>
|
55 |
</html>
|
|
|
10 |
</head>
|
11 |
<body>
|
12 |
<div class="container">
|
13 |
+
<header>
|
14 |
+
<h1>Currency Converter</h1>
|
15 |
+
</header>
|
16 |
+
|
17 |
<form id="currencyForm">
|
18 |
<input type="number" id="amount" placeholder="Enter amount" required>
|
19 |
<div class="currency-selectors">
|
|
|
43 |
</div>
|
44 |
<button type="submit">Convert</button>
|
45 |
</form>
|
46 |
+
|
47 |
<!-- Menambahkan tempat untuk ikon mata uang dan hasil konversi -->
|
48 |
<div id="result">
|
49 |
<i id="fromCurrencyIcon" class="fas"></i> <!-- Ikon untuk mata uang asal -->
|
|
|
51 |
<i id="toCurrencyIcon" class="fas"></i> <!-- Ikon untuk mata uang tujuan -->
|
52 |
</div>
|
53 |
</div>
|
54 |
+
|
55 |
<footer>
|
56 |
<p>© 2025 Teggar Eka Mustaqim Sitanggang. All rights reserved.</p>
|
57 |
</footer>
|
58 |
+
|
59 |
<script src="script.js"></script>
|
60 |
</body>
|
61 |
</html>
|