-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1.13 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
<!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" />
<link rel="icon" href="/icon/todo.png" type="image/png" sizes="48x48" />
<title>To-Do List</title>
<link rel="stylesheet" href="main.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
</head>
<body>
<div class="container">
<form class="todo__form" id="todoForm">
<h1 class="todo__title">Todo List</h1>
<div class="todo__main">
<input type="text" class="todo__input" placeholder="Add your new todo..." />
<button type="submit" class="todo__button">Add</button>
</div>
<button type="submit" class="all__delete">Delete all to-do</button>
<!-- <span class="alerts success">ToDo başarıyla eklendi!</span> -->
</form>
<div class="todo__container"></div>
</div>
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script src="app.js"></script>
</body>
</html>