CurrencyConverter5 / index.html
GarGerry's picture
Update index.html
8ad3b06 verified
raw
history blame
2.92 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">
</head>
<body>
<div class="container">
<!-- Navbar -->
<header class="navbar">
<div class="logo">
<img src="logo.png" alt="Logo">
</div>
<p class="welcome-text">Welcome to Currency Converter</p>
</header>
<!-- Headline and Explanation -->
<section class="headline">
<h1>Currency Converter</h1>
<p>Convert your money into different currencies with ease. Get the most accurate rates!</p>
</section>
<!-- Currency Converter Section -->
<section class="converter-content">
<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="GBP">GBP</option>
</select>
</div>
<button id="swap-btn" onclick="swapCurrencies()"></button>
<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="GBP">GBP</option>
</select>
</div>
<button id="convert-btn" onclick="convertCurrency()">Convert</button>
<p id="result"></p>
</div>
</section>
<!-- Instructions for Using Converter -->
<section class="instructions">
<div class="instructions-box">
<h2>How to Use the Converter</h2>
<p>1. Enter the amount you want to convert.</p>
<p>2. Select the currency you want to convert from and to.</p>
<p>3. Press the 'Convert' button or use the 'Swap' button to reverse currencies.</p>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<p><strong>About:</strong> Currency Converter App</p>
<p><strong>Follow us:</strong> <a href="#">Facebook</a> | <a href="#">Twitter</a></p>
<p>&copy; 2025 Currency Converter App. All rights reserved.</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>