-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (36 loc) · 1.59 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
<!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>
<!-- ! Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="alert alert-warning d-none" role="alert">
boş girilmez!!!
</div>
<div class="card">
<div class="card-header">
<h1 class="card-title text-center text-primary">Yapılacak Listesi</h1>
</div>
<div class="card-body">
<div class="input-group">
<label for="to-do" class="input-group-text">Ne yapacakasın?</label>
<input type="text" id="to-do" class="form-control">
<button class="btn btn-info" onclick="kaydet()">Kaydet</button>
</div>
</div>
<div class="card-footer m-0 p-0" id="wrapper">
</div>
</div>
</div>
<!-- ! Bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
<!-- ! Fontawesome -->
<script src="https://kit.fontawesome.com/756c2fd4b9.js" crossorigin="anonymous"></script>
<script src="./script.js"></script>
</body>
</html>