Popular Posts

Every tool you need to work with all type in one place

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Currency Calculator</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <div class="calculator">
        <h1>Currency Calculator</h1>
        <div class="input-group">
            <label for="amount">Amount:</label>
            <input type="number" id="amount" placeholder="Enter amount">
        </div>
        <div class="input-group">
            <label for="from-currency">From:</label>
            <select id="from-currency">
                <!-- Options will be populated by JavaScript -->
            </select>
        </div>
        <div class="input-group">
            <label for="to-currency">To:</label>
            <select id="to-currency">
                <!-- Options will be populated by JavaScript -->
            </select>
        </div>
        <button onclick="convertCurrency()">Convert</button>
        <div id="result"></div>
    </div>
    <script src="script.js"></script>
</body>
</html>

Currency Converter

Currency Converter

No comments