Spaces:
Running
Running
Update index.html
Browse files- index.html +57 -49
index.html
CHANGED
@@ -1,60 +1,68 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
<html lang="en">
|
3 |
<head>
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
</head>
|
9 |
<body>
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
</div>
|
25 |
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
|
35 |
-
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
</div>
|
50 |
-
|
51 |
-
<footer>
|
52 |
-
<p><strong>About:</strong> Currency Converter App</p>
|
53 |
-
<p><strong>Follow us:</strong> <a href="#">Facebook</a> | <a href="#">Twitter</a></p>
|
54 |
-
<p>© 2025 Currency Converter App. All rights reserved.</p>
|
55 |
-
</footer>
|
56 |
</div>
|
57 |
-
|
58 |
-
|
|
|
|
|
59 |
</body>
|
60 |
-
</html>
|
|
|
1 |
<!DOCTYPE html>
|
2 |
<html lang="en">
|
3 |
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Currency Converter</title>
|
7 |
+
<link rel="stylesheet" href="styles.css">
|
8 |
</head>
|
9 |
<body>
|
10 |
+
<!-- Navbar -->
|
11 |
+
<header>
|
12 |
+
<nav class="navbar">
|
13 |
+
<a href="#home">
|
14 |
+
<img src="logo.png" alt="Logo" class="logo">
|
15 |
+
</a>
|
16 |
+
</nav>
|
17 |
+
</header>
|
18 |
|
19 |
+
<!-- Headline -->
|
20 |
+
<section class="headline">
|
21 |
+
<h1>Seribu Dolar Baru Taiwan ke Euro</h1>
|
22 |
+
<p>Konversi TWD ke EUR dengan nilai tukar nyata</p>
|
23 |
+
</section>
|
|
|
24 |
|
25 |
+
<!-- Main Content (Form Konversi) -->
|
26 |
+
<main>
|
27 |
+
<section class="content-area">
|
28 |
+
<h1>Masukkan Jumlah TWD</h1>
|
29 |
+
<form>
|
30 |
+
<input type="number" id="amount" placeholder="Jumlah TWD" required>
|
31 |
+
<select id="currency-from">
|
32 |
+
<option value="TWD">TWD</option>
|
33 |
+
<!-- Tambahkan mata uang lainnya jika perlu -->
|
34 |
+
</select>
|
35 |
+
<select id="currency-to">
|
36 |
+
<option value="EUR">EUR</option>
|
37 |
+
<!-- Tambahkan mata uang lainnya jika perlu -->
|
38 |
+
</select>
|
39 |
+
<button type="submit">Konversi</button>
|
40 |
+
</form>
|
41 |
+
</section>
|
42 |
|
43 |
+
<!-- Informasi Cara Mengkonversi -->
|
44 |
+
<section class="info-box">
|
45 |
+
<h2>Cara Mengkonversi Mata Uang</h2>
|
46 |
+
<p>Masukkan jumlah uang yang ingin Anda konversi dalam kolom yang tersedia, pilih mata uang asal dan tujuan, lalu tekan tombol "Konversi" untuk mendapatkan hasil konversi berdasarkan nilai tukar yang terkini.</p>
|
47 |
+
</section>
|
48 |
+
</main>
|
49 |
|
50 |
+
<!-- Footer -->
|
51 |
+
<footer class="footer">
|
52 |
+
<div class="social-icons">
|
53 |
+
<a href="https://www.instagram.com/username" target="_blank" title="Instagram">
|
54 |
+
<img src="instagram-icon.png" alt="Instagram" style="width: 24px; height: 24px;">
|
55 |
+
</a>
|
56 |
+
<a href="https://www.twitter.com/username" target="_blank" title="Twitter">
|
57 |
+
<img src="twitter-icon.png" alt="Twitter" style="width: 24px; height: 24px;">
|
58 |
+
</a>
|
59 |
+
<a href="https://www.facebook.com/username" target="_blank" title="Facebook">
|
60 |
+
<img src="facebook-icon.png" alt="Facebook" style="width: 24px; height: 24px;">
|
61 |
+
</a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
</div>
|
63 |
+
<div class="copyright">
|
64 |
+
<p>© 2025 Teggar Eka Mustaqim Sitanggang. All rights reserved.</p>
|
65 |
+
</div>
|
66 |
+
</footer>
|
67 |
</body>
|
68 |
+
</html>
|