Spaces:
Running
Running
File size: 2,217 Bytes
9ff76f0 0bf4b41 9ff76f0 80f3229 0bf4b41 af437bf 0bf4b41 d53e7dd 0bf4b41 d53e7dd 9ff76f0 4ed7334 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
<!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> |