-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtodo3.html
37 lines (30 loc) · 1.08 KB
/
todo3.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
<!Doctype html>
<html>
<head>
<title >TODO LIST</title>
<meta charset="UTF-8">
<meta name="viewport" content="width= device-width, initial-scale=1.0,user-scalable=yes">
<link rel="stylesheet" href="todo3.css">
</head>
<body>
<div id="box" class="container">
<div class="title">
<h2>TODO LIST <small id="edit"> edit</small></h2>
</br>
</div>
<div class="input">
<input id="task" type="text" class="input" placeholder="Pls enter..." >
</div>
</br>
<div class="hold">
<ol id="text-holder" >
<li><span>×</span> CODE</li>
<li><span>×</span> CODE</li>
<li><span> ×</span> CODE</li>
<li><span> ×</span> CODE</li>
</ol>
</div>
</div>
<script src="todo3.js"></script>
</body>
</html>