-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (50 loc) · 1.52 KB
/
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
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Awesome Task List</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300i,
700&display=swap&subset=cyrillic,cyrillic-ext" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous">
</head>
<body>
<div class="container container_shadow">
<div class="block">
<div class="card card_content">
<span class="card__title">
Список задач
</span>
<div class="row">
<form id="taskForm" class="form">
<div class="form__input">
<input id="task" type="text" name="task" class="input__inLine">
<label for="task" class="label">
новая задача
</label>
</div>
<input type="submit" value="Добавить" class="btn btn_add">
</form>
</div>
</div>
<div class="card card__action">
<span class="card__title">
Задачи
</span>
<div class="row">
<div class="form__input">
<input id="filter" type="text" name="filter" class="input__inLine">
<label for="filter" class="label">фильтр задач</label>
</div>
</div>
</div>
<ul class="collection">
</ul>
<button type="reset" class="btn btn_clear">Очистить все</button>
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>