-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (31 loc) · 1.2 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
<!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="style.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet"> <!-- FontAwesome -->
</head>
<body>
<div class="container">
<div class="todo-app">
<h2>To-Do List <img src="images/icon.png" alt=""></h2>
<div class="row">
<input type="text" id="input-box" placeholder="Add your text">
<button onclick="addTask()">Add</button>
</div>
<ul id="list-container">
<!-- Dynamic tasks will be added here -->
</ul>
<button id="theme-toggle" onclick="toggleTheme()">🌙</button> <!-- Dark/Light Mode Toggle -->
</div>
</div>
<!-- Footer Section -->
<footer>
<p>Made with ❤️ by Arpit</p>
<p>Version 1.0 | <a href="https://github.com/your-repo" target="_blank">GitHub</a></p>
</footer>
<script src="script.js"></script>
</body>
</html>