-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (55 loc) · 1.75 KB
/
Copy pathindex.html
File metadata and controls
58 lines (55 loc) · 1.75 KB
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
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/main.css" />
<title>ToDo приложение</title>
</head>
<body>
<div class="container">
<div class="display-4 mb-2 title">ToDo aplication</div>
<div class="h4 mb-5 title">Cписок задач</div>
<div class="card mb-4">
<ul id="tasksList" class="list-group list-group-flush"></ul>
</div>
<div class="card bg-light">
<div class="card-header">Добавить новую задачу</div>
<div class="card-body">
<form id="form">
<div class="form-group">
<input
type="text"
class="form-control"
id="taskInput"
placeholder="Описание задачи"
required
/>
<small id="emailHelp" class="form-text text-muted"
>Что делаем, сколько времени тратим, какой результат
получаем.</small
>
</div>
<button
type="submit"
id="btn"
class="btn btn-primary btn-lg active"
>
Добавить
</button>
</form>
</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>