CurrencyConverter5 / index.html
GarGerry's picture
Update index.html
0bf4b41 verified
raw
history blame
2.22 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="logo">My Currency Converter</div>
<div class="greeting">Welcome to the Converter</div>
</nav>
<!-- Headline and Explanation -->
<section class="headline">
<h1>Currency Conversion Made Simple</h1>
<p>Easy steps to convert your currencies with the latest rates</p>
</section>
<!-- Content for Currency Conversion -->
<section class="main-content">
<div class="converter">
<input type="number" id="amount" placeholder="Amount to convert">
<select id="from-currency">
<option value="USD">USD</option>
<option value="EUR">EUR</option>
<option value="IDR">IDR</option>
</select>
<span>to</span>
<select id="to-currency">
<option value="EUR">EUR</option>
<option value="USD">USD</option>
<option value="IDR">IDR</option>
</select>
<button id="convert-btn">Convert</button>
<div id="result"></div>
</div>
</section>
<!-- Steps for How to Use Converter -->
<section class="steps">
<h2>How to Use the Converter</h2>
<div class="step-container">
<div class="step">
<h3>1. Enter Amount</h3>
<p>Just type in the amount you want to convert.</p>
</div>
<div class="step">
<h3>2. Choose Your Currencies</h3>
<p>Select the currencies you want to convert from and to.</p>
</div>
<div class="step">
<h3>3. Get Your Result</h3>
<p>Your conversion result will appear below with the current exchange rate.</p>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<p>About Us | Social Media | Copyright</p>
</footer>
</body>
</html>