-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (43 loc) · 1.57 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="ru">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-Do-List-JS</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
<link rel="stylesheet" href="src/styles.css">
</head>
<body>
<div id="app">
<div class="container todo_items">
<!-- input new task -->
<div class="input-group mb-3 todo__input">
<input type="text" placeholder="New task" value='' class="form-control todo__text">
<button class="btn btn-outline-secondary add-task-btn" type="button">Add</button>
</div>
<!-- status change -->
<select class="form-select select-status">
<option selected value="all">All</option>
<option value="active">Active</option>
<option value="completed">Completed</option>
</select>
<div class="todos-container">
</div>
<!-- 1 pc of item -->
<!--
<div class="input-group mb-3 todo__item">
<div class="input-group-text">
<input class="form-check-input mt-0 task-input" type="checkbox" value=""
aria-label="Checkbox for following text input">
</div>
<div class="form-control todo__item_text" aria-label="Text input with checkbox">
</div>
</div>
-->
</div>
</div>
<script src="src/index.js"></script>
</body>
</html>