-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (35 loc) · 992 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>To Do List</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="container">
<div class="title">
<h2><img src="icon.png"> To Do List </h2>
<button id="dark-mode-button">
<img src="dark.png" alt="Toggle Dark Mode">
</button>
</div>
<div class="todo-app">
<form class="row" onsubmit=handelsubmit(event)>
<input type="text" id="input-box" placeholder="Add your text">
<button id="add-button"><img src="playlist.png" alt=""></button>
</form>
<ul id="list-container">
<!-- <li class="checked">Task 1</li>
<li>Task 2</li>
<li>Task 3</li>
<li>Task 4</li> -->
</ul>
</div>
<footer class="made-with-love">
Copyright 2022@ Sowham bhuin
</footer>
</div>
<script src="script.js"></script>
</body>
</html>