-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
50 lines (50 loc) · 1.87 KB
/
index.php
File metadata and controls
50 lines (50 loc) · 1.87 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Workflow Management</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="header">
<nav class="navbar">
<a href="#" class="logo">Task Loop</a>
<ul class="nav-links">
<li><a href="#features">Features</a></li>
<li><a href="#about">About</a></li>
<li><a href="login.php">Login</a></li>
</ul>
</nav>
</header>
<main class="main-content">
<section class="hero">
<h1>Manage Your Workflow Efficiently</h1>
<p>Streamline tasks, track progress, and collaborate with your team.</p>
<a href="login.php" class="cta-btn">Get Started</a>
</section>
<section id="features" class="features">
<h2>Features</h2>
<div class="feature-item">
<h3>Task Management</h3>
<p>Assign tasks, set deadlines, and prioritize effortlessly.</p>
</div>
<div class="feature-item">
<h3>Collaboration Tools</h3>
<p>Communicate and share files with your team seamlessly.</p>
</div>
<div class="feature-item">
<h3>Progress Tracking</h3>
<p>Monitor progress and stay updated with real-time dashboards.</p>
</div>
</section>
<section id="about" class="about">
<h2>About Us</h2>
<p>Task Loop is your go-to solution for managing projects and enhancing productivity.</p>
</section>
</main>
<footer class="footer">
<p>© <?php echo date("Y"); ?> Task Loop. All rights reserved.</p>
</footer>
</body>
</html>