-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (47 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>ToDoList</title>
<meta charset="utf-8" />
<meta author="Wiktoria Bilska" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./css/style.css" />
<script
src="https://kit.fontawesome.com/418e1d6294.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div class="todo">
<div class="header">
<h1>ToDo List</h1>
<input
type="text"
class="todoInput"
placeholder="Enter content..."
required
/>
<button class="addBtn" type="submit">Add</button>
</div>
<div class="todoList">
<h3>Todo List:</h3>
<p class="alertInfo">There are currently no tasks.</p>
<ul></ul>
</div>
</div>
<div class="popup">
<h3>Edit task:</h3>
<div class="popupBody">
<p class="popupInfo"></p>
<input
type="text"
class="popupInput"
placeholder="Enter new content..."
/>
<button class="popupBtn accept">Accept</button>
<button class="popupBtn cancel">Cancel</button>
</div>
</div>
<script src="./js/main.js"></script>
</body>
</html>