-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo-list.html
46 lines (40 loc) · 1.28 KB
/
todo-list.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
<<<<<<< HEAD
<!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/todo-list.css">
</head>
<body>
<p>ToDo List</p>
<div class = "todo-input-grid">
<input placeholder="Todo name" class = "js-input name-input">
<input type = "date" class = "js-due-date-input date-input">
<button class = "add-todo-btn js-add-todo-btn">Add</button>
</div>
<div class = "js-todo-list todo-grid"></div>
<script src = "todo-list.js"></script>
</body>
=======
<!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/todo-list.css">
</head>
<body>
<p>ToDo List</p>
<div class = "todo-input-grid">
<input placeholder="Todo name" class = "js-input name-input">
<input type = "date" class = "js-due-date-input date-input">
<button class = "add-todo-btn js-add-todo-btn">Add</button>
</div>
<div class = "js-todo-list todo-grid"></div>
<script src = "todo-list.js"></script>
</body>
>>>>>>> 3402db5979568b75eda9105a13ef2ee3108d1db7
</html>