-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml to do.html
32 lines (27 loc) · 901 Bytes
/
html to do.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo list</title>
<link rel="stylesheet" href="css to do.css">
</head>
<body>
<div class="todo-container">
<h1>TODO LIST</h1>
<h3 style="color: purple;">Create your list</h3>
<div class="todo-input">
<input type="text" placeholder="Enter your task">
<button>Add another Task</button>
</div>
<div class="todo-list">
<ul>
<!-- <li>Eat <button class="del">Delte</button></li>
<li>Sleep <button class="del">Delte</button></li>
<li>Play <button class="del">Delte</button></li> -->
</ul>
</div>
</div>
<script src="js to do.js"></script>
</body>
</html>