-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (23 loc) · 725 Bytes
/
index.html
File metadata and controls
29 lines (23 loc) · 725 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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>MyOwnToDoList</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<input maxlength="20" autofocus placeholder="Введите задачу..." type="text" id="item">
<button id="add-new-task-btn">+</button>
</header>
<div class="content" id="uncompleted">
<p id="welcome-current-text"><i>Here will be today tasks!</i></p>
</div>
<div class="tasks-cutter">
</div>
<div class="content" id="completed">
<p id="welcome-done-text"><i>Here will be done tasks!</i></p>
</div>
</body>
<script type="text/javascript" src="script.js"></script>
</html>