-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (26 loc) · 1.13 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
<!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 rel="stylesheet" href="styles.css">
</head>
<body>
<div class="background-quotes">
<div class="quote" style="top: 10%; left: 15%;">"The only way to do great work is to love what you do." – Steve Jobs</div>
<div class="quote" style="top: 40%; left: 70%;">"Success is not the key to happiness. Happiness is the key to success." – Albert Schweitzer</div>
<div class="quote" style="top: 70%; left: 30%;">"Your time is limited, don't waste it living someone else's life." – Steve Jobs</div>
</div>
<div class="container">
<h1 class="title">To-Do List</h1>
<form id="todo-form">
<input type="text" id="new-task" placeholder="Enter a new task..." required>
<input type="datetime-local" id="task-deadline" required>
<button type="submit" id="add-task">Add Task</button>
</form>
<ul id="todo-list"></ul>
</div>
<script src="script.js"></script>
</body>
</html>