<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta name="description" content="Disclaimer Page for Days and Age Calculator">

    <title>Disclaimer</title>

    <style>

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }

        body {

            font-family: Arial, sans-serif;

            background: linear-gradient(to right, #74ebd5, #acb6e5);

            color: #333;

            display: flex;

            flex-direction: column;

            min-height: 100vh;

        }

        header {

            background-color: #4CAF50;

            color: white;

            padding: 20px;

            text-align: center;

            font-size: 24px;

            font-weight: bold;

        }

        nav {

            background-color: #333;

            color: white;

            display: flex;

            justify-content: center;

            padding: 10px 0;

        }

        nav a {

            color: white;

            text-decoration: none;

            margin: 0 15px;

            font-size: 16px;

        }

        nav a:hover {

            text-decoration: underline;

        }

        .container {

            flex: 1;

            padding: 20px;

        }

        .content {

            background: white;

            padding: 20px;

            border-radius: 10px;

            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

            max-width: 800px;

            margin: 20px auto;

            text-align: justify;

        }

        footer {

            background-color: #4CAF50;

            color: white;

            text-align: center;

            padding: 10px;

            font-size: 14px;

        }

    </style>

</head>

<body>


<header>

    Disclaimer

</header>


<nav>

    <a href="index.html">Home</a>

    <a href="about.html">About</a>

    <a href="calculator.html">Age Calculator</a>

    <a href="contact.html">Contact Us</a>

    <a href="disclaimer.html">Disclaimer</a>

</nav>


<div class="container">

    <div class="content">

        <h1>Disclaimer</h1>

        <p>

            The information provided on the <strong>Days and Age Calculator</strong> website is for general informational purposes only. While we strive to ensure the accuracy and reliability of the information, we make no guarantees or representations regarding its correctness, completeness, or suitability for any purpose.

        </p>

        <p>

            By using this website, you acknowledge and agree that the results produced by the calculator are based on the data entered and are not intended to replace professional or legal advice. Users should exercise their own discretion and verify the information independently if necessary.

        </p>

        <p>

            The <strong>Days and Age Calculator</strong> team will not be held responsible for any errors, omissions, or inaccuracies in the content or for any damages resulting from its use. Any reliance you place on such information is strictly at your own risk.

        </p>

        <p>

            We reserve the right to make changes to the content or functionality of this website at any time without prior notice. If you have any questions or concerns about this disclaimer, feel free to contact us through the contact page.

        </p>

    </div>

</div>


<footer>

    &copy; 2025 Days and Age Calculator. All Rights Reserved.

</footer>


</body>

</html>

Comments

Popular posts from this blog

About Us