-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<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>Todo-App</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<main class="app">
<h1>Todo-List</h1>
<div class="input-header">
<h1><span id="date"></span></h1>
<div class="to-do-input">
<input type="text" id="item" placeholder="Type something..."><button id="enter">Добавить</button>
<input style="margin-top: 4px;" type="datetime-local" id="deadline" placeholder="Set deadline">
</div>
</div>
<div class="sortBtn"><i id="sortId" class="fa-solid fa-arrow-up-wide-short"></i></div>
<div class="todo-list"></div>
</main>
<script src="components/app.js"></script>
<script src="components/auth.js"></script>
</body>
</html>