-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (51 loc) · 1.75 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
<!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 App</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- App Container -->
<div class="app-container">
<!-- Header -->
<div class="header">
<h1>Simple To-Do</h1>
<div class="hamburger-menu" onclick="toggleProfile()">
<div></div>
<div></div>
<div></div>
</div>
</div>
<!-- Profile Section -->
<div class="profile-section" id="profileSection">
<img src="profile-image.png" alt="Profile Picture">
<p><strong>Name:</strong>Your Name</p>
<p><strong>Email:</strong>Your G-mail Acount</p>
</div>
<!-- Task List -->
<div class="task-list" id="taskList">
<!-- Tasks will be added dynamically here -->
</div>
<!-- Add Task Form -->
<form class="add-task-form" id="taskForm">
<input type="text" id="taskInput" placeholder="What do you want to do?" required />
<input type="date" id="taskDate" value="" required />
<input type="time" id="taskTime" value="" required />
<div class="categories">
<div class="category" onclick="selectCategory('Personal')">Personal</div>
<div class="category" onclick="selectCategory('Work')">Work</div>
<div class="category" onclick="selectCategory('Study')">Study</div>
</div>
<button type="submit" class="add-btn">Add Task</button>
</form>
<!-- Footer Section -->
<div class="footer">
<button>© Khadem 2024</button>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/js/all.min.js"></script>
<script src="scripts.js"></script>
</body>
</html>