-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
36 lines (36 loc) · 1.33 KB
/
about.php
File metadata and controls
36 lines (36 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<?php include 'header.php'; ?>
<main>
<h2>About Task Allocator Pro</h2>
<p>
Welcome to <strong>Task Allocator Pro</strong>, the ultimate solution for streamlined task management and efficient team collaboration.
</p>
<p>
Our mission is to empower teams to stay organized, meet deadlines, and achieve their goals with ease. Whether you’re a manager looking to delegate tasks,
a project leader coordinating team efforts, or a team member completing assignments, Task Allocator Pro is here to make your work-life seamless.
</p>
<p>
Key Features:
</p>
<ul>
<li>Easy Task Assignment and Tracking</li>
<li>Real-Time Progress Monitoring</li>
<li>Comprehensive Dashboard for Managers</li>
<li>Collaborative Tools for Teams</li>
<li>Customizable Workflows</li>
</ul>
<p>
Thank you for choosing Task Allocator Pro. Together, let’s achieve great things!
</p>
</main>
<?php include 'footer.php'; ?>
</body>
</html>