CurrencyConverter / index.html
GarGerry's picture
Update index.html
8b72495 verified
raw
history blame
2.83 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="styles.css">
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<div class="navbar-content">
<img src="logo.png" alt="Logo" class="logo">
<p class="welcome-text">Welcome to Currency Converter</p>
</div>
</nav>
<!-- Headline and Explanation -->
<section class="headline-section">
<h1 class="headline">Currency Converter</h1>
<p class="explanation">Easily convert between different currencies using the latest exchange rates.</p>
</section>
<!-- Currency Converter Form -->
<section class="converter-container">
<div class="currency-container">
<div class="currency-input">
<label for="amount">Amount:</label>
<input type="number" id="amount" placeholder="Enter amount">
</div>
<div class="currency-input">
<label for="from-currency">From:</label>
<select id="from-currency">
<option value="USD">USD</option>
<option value="EUR">EUR</option>
<option value="IDR">IDR</option>
</select>
</div>
<div class="currency-input">
<label for="to-currency">To:</label>
<select id="to-currency">
<option value="EUR">EUR</option>
<option value="USD">USD</option>
<option value="IDR">IDR</option>
</select>
</div>
<button id="swap-btn" onclick="swapCurrencies()">πŸ”„</button>
<button id="convert-btn" onclick="convertCurrency()">Convert</button>
</div>
<div id="result"></div>
</section>
<!-- Steps to use Converter -->
<section class="steps-container">
<h2>How to Convert</h2>
<div class="steps">
<div class="step">
<h3>1. Enter Amount</h3>
<p>Simply type the amount you want to convert into the amount box.</p>
</div>
<div class="step">
<h3>2. Select Your Currency</h3>
<p>Select the currency you are converting from and to from the dropdown menus.</p>
</div>
<div class="step">
<h3>3. That's It!</h3>
<p>The exchange rate will be calculated and displayed instantly.</p>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<p>&copy; 2025 Currency Converter. All Rights Reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>