forked from Groverio/To-Do-List
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (56 loc) · 3.09 KB
/
index.html
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
51
52
53
54
55
56
57
58
59
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>TaskMaster - Organize Your Life</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="style.css">
<style>
body {
font-family: 'Poppins', sans-serif;
}
</style>
</head>
<body class="bg-gradient-to-br from-purple-600 via-indigo-600 to-blue-500 text-white min-h-screen flex flex-col transition-colors duration-300">
<!-- Navbar -->
<header class="bg-white bg-opacity-5 backdrop-filter backdrop-blur-md shadow-lg transition-colors duration-300 sticky top-0 z-50">
<div class="container mx-auto px-6 py-4">
<div class="flex justify-between items-center">
<a href="#" class="text-3xl font-bold text-white transition-colors duration-300">TaskMaster</a>
<nav class="flex items-center space-x-8">
<a href="#" class="text-white hover:text-purple-200 transition duration-300 text-lg">Features</a>
<a href="#" class="text-white hover:text-purple-200 transition duration-300 text-lg">Pricing</a>
<a href="#" class="text-white hover:text-purple-200 transition duration-300 text-lg">About</a>
<a href="Todo.html" class="get-started-btn bg-white text-purple-600 px-6 py-2 rounded-full font-semibold hover:bg-purple-100 transition duration-300 shadow-md hover:shadow-lg text-lg">Get Started</a>
<button id="dark-mode-toggle" class="p-2 rounded-full bg-white bg-opacity-20 text-white hover:bg-opacity-30 transition duration-300 focus:outline-none">
<i class="fas fa-moon text-xl"></i>
</button>
</nav>
</div>
</div>
</header>
<!-- Hero Section -->
<main class="flex-grow flex items-center justify-center px-4">
<div class="text-center">
<h1 class="text-5xl md:text-7xl font-bold mb-6 leading-tight">Organize Your Life <br>with TaskMaster</h1>
<p class="text-xl md:text-2xl mb-12 max-w-2xl mx-auto">Effortlessly manage tasks, boost productivity, and achieve your goals with our intuitive todo list application.</p>
<a href="Todo.html" class="bg-white text-purple-600 text-lg font-semibold px-8 py-4 rounded-full hover:bg-purple-100 transition duration-300 shadow-lg hover:shadow-xl">
Start Organizing Now
</a>
</div>
</main>
<!-- Footer -->
<footer class="bg-white bg-opacity-10 backdrop-filter backdrop-blur-lg py-6">
<div class="container mx-auto px-4 text-center">
<p class="text-sm">
© 2024 TaskMaster. Made with <i class="fas fa-heart text-red-500"></i> by Ansh Grover. All rights reserved.
</p>
</div>
</footer>
<script src="darkMode.js"></script>
</body>
</html>