-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (52 loc) · 1.7 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To Do App</title>
<!-- Style -->
<link rel="stylesheet" href="./css/style_index.css">
</head>
<body>
<!-- Navbar -->
<nav class="navbar-left">
<a href="./html/about.html">
<div class="navbar-button">
<i class="fa-solid fa-circle-info fa-xl emoji"></i>
</div>
</a>
</nav>
<div>
<!-- Header -->
<header class="app-name">TO DO</header>
<!-- Add Task -->
<div class="add-task">
<input class="add-text" type="text" id="add-task" placeholder="Görev giriniz.">
<button class="add-button" type="submit" id="add-button">
<i class="fa-solid fa-right-to-bracket fa-2xl"></i>
</button>
</div>
<!-- Tasks -->
<div>
<!-- Uncompleted -->
<div>
<!-- Header -->
<header class="list-head">Yapılacaklar</header>
<!-- List -->
<ul class="uncompleted-ul" id="uncompleted-list"></ul>
</div>
<!-- Completed -->
<div>
<!-- Header -->
<header class="list-head head-completed">Yapılanlar</header>
<!-- List -->
<ul class="completed-ul" id="completed-list"></ul>
</div>
</div>
</div>
<!-- Page Script -->
<script src="./js/scripts.js" ></script>
<!-- Fontawesome Script -->
<script src="https://kit.fontawesome.com/76c7501aeb.js" crossorigin="anonymous"></script>
</body>
</html>