-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 1.44 KB
/
index.html
File metadata and controls
26 lines (26 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1 class="text-4xl sm:text-5xl md:text-6xl lg:text-8xl font-extrabold text-transparent bg-clip-text bg-gradient-to-r from-blue-200 to-pink-200">Zen Desk</h1>
<nav class="flex flex-wrap justify-center space-x-0 sm:space-x-4 mt-10">
<a href="pomodoro.html" class="button w-full sm:w-auto mb-2 sm:mb-0">Pomodoro</a>
<a href="todo.html" class="button w-full sm:w-auto mb-2 sm:mb-0">Todo List</a>
<a href="notes.html" class="button w-full sm:w-auto mb-2 sm:mb-0">Notes</a>
<a href="reminders.html" class="button w-full sm:w-auto mb-2 sm:mb-0">Reminders</a>
<a href="habit-tracker.html" class="button w-full sm:w-auto">Habit Tracker</a>
</nav>
<footer class="footer p-4 text-center mt-8">
Made with ❤️ by <a href="https://github.com/DaPandamonium" onclick="event.preventDefault();">DaPanda</a>
</footer>
</body>
</html>