-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (23 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-Do List</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.16/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<body class="bg-gradient-to-r from-black to-gray-900 min-h-screen flex items-center justify-center">
<div class="container bg-white bg-opacity-20 backdrop-blur-md p-8 rounded-lg">
<h1 class="text-4xl font-bold text-center text-gray-300 mb-6">To-Do List</h1>
<form id="task-form" class="flex mb-4">
<input type="text" id="task-input" placeholder="Enter a new task" class="flex-1 p-2 border border-gray-500 bg-opacity-50 bg-gray-800 text-white rounded-l-md">
<button type="submit" class="bg-gradient-to-r from-purple-500 to-blue-500 text-white px-4 py-2 rounded-r-md hover:from-purple-600 hover:to-blue-600">Add Task</button>
</form>
<ul id="task-list" class="space-y-2"></ul>
</div>
<script src="scripts.js"></script>
</body>
</body>
</html>