<!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="About Us - Days and Age Calculator">
<title>About Us</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>
About Us
</header>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About Us</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>About Us</h1>
<p>
Welcome to <strong>Days and Age Calculator</strong>, your reliable online tool for calculating the number of days between two dates and determining your precise age. We aim to provide accurate, easy-to-use, and efficient services to users who need quick date-related calculations.
</p>
<p>
Our mission is to simplify complex date computations and offer a user-friendly interface where anyone can calculate age or time differences in just a few clicks. Whether you're planning an event, tracking milestones, or just curious about the exact number of days between dates, our calculator has you covered.
</p>
<p>
At <strong>Days and Age Calculator</strong>, we are dedicated to constant improvement, ensuring our platform remains accurate, secure, and intuitive. We also welcome feedback and suggestions to enhance your experience.
</p>
<p>
Thank you for choosing <strong>Days and Age Calculator</strong>. If you have any questions or require support, feel free to reach out to us through our <a href="contact.html">Contact Us</a> page.
</p>
</div>
</div>
<footer>
© 2025 Days and Age Calculator. All Rights Reserved.
</footer>
</body>
</html>
Comments
Post a Comment