You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
139 lines
4.3 KiB
139 lines
4.3 KiB
<?php
|
|
// About Page - about.php
|
|
?>
|
|
|
|
<!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 - Learn more about our mission, values, and services.">
|
|
<title>About Us</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
header {
|
|
background-color: #007bff;
|
|
color: white;
|
|
padding: 1rem 2rem;
|
|
text-align: center;
|
|
}
|
|
nav {
|
|
display: flex;
|
|
justify-content: center;
|
|
background-color: #333;
|
|
}
|
|
nav a {
|
|
color: white;
|
|
text-decoration: none;
|
|
padding: 1rem;
|
|
margin: 0 0.5rem;
|
|
}
|
|
nav a:hover {
|
|
background-color: #575757;
|
|
border-radius: 5px;
|
|
}
|
|
main {
|
|
padding: 2rem;
|
|
}
|
|
footer {
|
|
background-color: #007bff;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 1rem;
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
}
|
|
.about-section {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
padding: 30px;
|
|
background-color: #f4f4f9;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
.about-section h2 {
|
|
text-align: center;
|
|
color: #333;
|
|
}
|
|
.about-section p {
|
|
font-size: 18px;
|
|
color: #333;
|
|
line-height: 1.6;
|
|
}
|
|
.about-section ul {
|
|
margin-left: 20px;
|
|
font-size: 18px;
|
|
color: #333;
|
|
}
|
|
.btn-back {
|
|
display: inline-block;
|
|
padding: 10px 20px;
|
|
margin-top: 20px;
|
|
background-color: #007bff;
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
text-align: center;
|
|
font-size: 18px;
|
|
}
|
|
.btn-back:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<h1>About Us</h1>
|
|
<p>Learn more about our mission, values, and services.</p>
|
|
</header>
|
|
|
|
<nav>
|
|
<a href="homepage.php">Home</a>
|
|
<a href="about.php">About</a>
|
|
<a href="services.html">Services</a>
|
|
<a href="contact.html">Contact</a>
|
|
<a href="login.php">Log Out</a>
|
|
</nav>
|
|
|
|
<main>
|
|
<section class="about-section">
|
|
<h2>Who We Are</h2>
|
|
<p>At Info Path, we are passionate about providing the best quality content and services to our users. Our goal is to create a platform that brings together individuals seeking valuable resources, ideas, and solutions. We are committed to user satisfaction, constant innovation, and continuous improvement.</p>
|
|
|
|
<h3>Our Mission</h3>
|
|
<p>Our mission is to empower individuals and businesses by offering valuable insights, services, and tools that make a real difference. We are driven by the desire to provide our users with resources that help them achieve success in their personal and professional lives.</p>
|
|
|
|
<h3>Our Values</h3>
|
|
<ul>
|
|
<li><strong>Integrity:</strong> We believe in being honest and transparent with our users at all times.</li>
|
|
<li><strong>Innovation:</strong> We are constantly evolving and finding new ways to improve our services and user experience.</li>
|
|
<li><strong>Customer-Centric:</strong> Our users' needs are our top priority, and we always strive to exceed their expectations.</li>
|
|
<li><strong>Collaboration:</strong> We work together as a team to build a platform that benefits everyone involved.</li>
|
|
</ul>
|
|
|
|
<h3>What We Offer</h3>
|
|
<p>Our platform offers a wide range of services, including:</p>
|
|
<ul>
|
|
<li>Quality content in various fields</li>
|
|
<li>Expert advice and resources</li>
|
|
<li>Personalized solutions tailored to user needs</li>
|
|
<li>Regular updates and improvements</li>
|
|
</ul>
|
|
|
|
<!-- Button to go back to the homepage -->
|
|
<a href="homepage.php" class="btn-back">Back to Home</a>
|
|
</section>
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© 2025 Info Path. All Rights Reserved.</p>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|
|
|