Testinghh / index.html
GarGerry's picture
Update index.html
7ae1eb2 verified
raw
history blame
1.7 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Currency Converter</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<header>
<h1>Currency Converter</h1>
</header>
<form id="currencyForm">
<label for="amount">Amount</label>
<input type="number" id="amount" placeholder="Enter amount" required>
<label for="fromCurrency">From</label>
<select id="fromCurrency" required>
<option value="USD" selected>USD - US Dollar</option>
<option value="IDR">IDR - Indonesian Rupiah</option>
<option value="EUR">EUR - Euro</option>
<option value="GBP">GBP - British Pound</option>
<option value="JPY">JPY - Japanese Yen</option>
</select>
<button type="button" id="swapButton"><i class="fas fa-exchange-alt"></i> Swap</button>
<label for="toCurrency">To</label>
<select id="toCurrency" required>
<option value="IDR" selected>IDR - Indonesian Rupiah</option>
<option value="USD">USD - US Dollar</option>
<option value="EUR">EUR - Euro</option>
<option value="GBP">GBP - British Pound</option>
<option value="JPY">JPY - Japanese Yen</option>
</select>
</form>
<button id="convertButton">Convert</button>
<div id="result"></div>
<footer>
<p>&copy; 2025 Teggar Eka Mustaqim Sitanggang. All Rights Reserved.</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>