-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodo.html
More file actions
29 lines (26 loc) · 788 Bytes
/
todo.html
File metadata and controls
29 lines (26 loc) · 788 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>TodoList v2.0</title>
<meta charset="utf-8" />
<!-- Font-awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" />
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="todo.css" />
<!-- JQ -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
</head>
<body>
<div class="M_block">
<span id="t"></span>
</div>
<div class="pole_block">
<input type="text" placeholder="Введите ваши планы" id="inpt" />
<button class="add">Добавить</button>
<button class="hide_all">Очистить все</button>
</div>
<div class="Container">
</div>
<script src="todo.js"></script>
</body>
</html>