Wednesday, 4 December 2024

100% Free GST Calculator Tool: Easily Calculate GST In one Click Become a millionaire after using this tool

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>GST Calculator</title>
    <style>
        * {
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            margin: 0;
            background-color: #f9f9f9;
        }

        .container {
           background-color: #009fb7;
            border-color: #000;
            border-radius: 5px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin: 50px auto;
            max-width: 385px;
            text-align: center;
         
        }

        .input-group {
            display: flex;
            flex-direction: column;
            margin-bottom: 20px;
            width: 100%;
            max-width: 400px;
        }

        .input-group label {
            margin-bottom: 5px;
            font-weight: bold;
        }

        .input-group input {
            padding: 10px;
            border-radius: 5px;
            border: 1px solid #ccc;
            font-size: 16px;
            width: 100%;
            margin-bottom: 10px;
        }

        .input-group input:focus {
            outline: none;
            border-color: #555;
        }

        .calculate-btn {
            padding: 10px 20px;
            border-radius: 5px;
            border: none;
            background-color: #FF0064;;
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
        }

        .calculate-btn:hover {
            background-color: #3e8e41;
        }

No comments: