-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (38 loc) · 1.49 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
<!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>
<link rel="stylesheet" href="assets/css/style.css">
<script src="assets/js/todo.js" defer></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Anta&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="todo-content">
<h1>T O D O</h1>
<div class="todo-btn">
<input class="todoText" type="text" placeholder="TO DO TEXT">
<button class="addTodoBtn">TO DO ADD</button>
</div>
</div>
<div class="todo-text"></div>
<div id="myModal" class="modal">
<div class="modal-content">
<div class="modal-tag">
<h1>NE İLE DEĞİŞTİRMEK İSTİYORSUNUZ?</h1>
<input type="text" placeholder="ToDo Edit...">
<div class="modal-btn">
<button class="modal-change-btn">DEĞİŞTIR</button>
<button class="modal-close-btn">KAPAT</button>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>