CurrencyConverter5 / index.html
GarGerry's picture
Update index.html
755d667 verified
raw
history blame
2.66 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 -->
<div class="navbar">
<div class="logo">
<img src="logo.png" alt="Logo">
</div>
</div>
<!-- Headline -->
<div class="headline">
<h1>Currency Converter</h1>
<p>Convert currencies with real-time exchange rates.</p>
</div>
<!-- Converter Container -->
<div class="content">
<div class="converter-container">
<div class="currency-box">
<label for="amount">Amount</label>
<input type="number" id="amount" placeholder="Enter amount">
</div>
<div class="currency-select">
<div class="currency-group">
<label for="from-currency">From Currency</label>
<select id="from-currency">
<option value="USD">USD</option>
<option value="EUR">EUR</option>
<!-- Add more options as needed -->
</select>
</div>
<button id="swap-btn">
<i class="fa fa-exchange"></i>
</button>
<div class="currency-group">
<label for="to-currency">To Currency</label>
<select id="to-currency">
<option value="EUR">EUR</option>
<option value="USD">USD</option>
<!-- Add more options as needed -->
</select>
</div>
</div>
<button id="convert-btn">Convert</button>
<div id="result"></div>
</div>
</div>
<!-- How to Use Section -->
<div class="how-to-use">
<h2>How to Use</h2>
<div class="steps">
<div class="step">
<h3>Step 1</h3>
<p>Enter the Amount</p>
</div>
<div class="step">
<h3>Step 2</h3>
<p>Select Your Currencies</p>
</div>
<div class="step">
<h3>Step 3</h3>
<p>Click Convert</p>
</div>
</div>
</div>
<!-- Footer -->
<div class="footer">
<p>About | Social Media | Copyright</p>
</div>
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
</body>
</html>