-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (85 loc) · 4.07 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<!-- My Css-->
<link rel="stylesheet" href="style.css">
<!-- Font Awesome-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital@1&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Raleway:ital@1&display=swap"
rel="stylesheet">
<title>Day Planner | Write Your Daily Tasks Here</title>
</head>
<body>
<nav>
<div class="container-fluid">
<div class="row">
<div class="col-4 col-lg-3 mt-2"><p class="fs-6"><span id="date"></span><br>
<span id="day"></span></p></div>
<div class="col-4 col-lg-6"><a class="navbar-brand text-center fs-1 text-white" href="#">
<h1><span>DAY</span> PLANNER</h1>
</a></div>
<div class="col-4 col-lg-3 d-flex justify-content-end mt-2"><p class="fs-5"><span id="time"></span></p></div>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-12">
<div class="card text-center">
<div class="card-header">
<h4 class="card-title my-3"><span class="mark-heading">What Are You Planning To do Today?</span></h4>
</div>
<div class="card-body">
<div class="container">
<form id="task-form">
<div class="d-lg-flex justify-content-evenly">
<div>
<input type="text" name="Task" id="task" class="form-control task-input" placeholder="Add a Task">
</div>
<div>
<button type="submit" class="btn btn-submit my-lg-0 my-4">Add To List </button>
</div>
</div>
</form>
<h4 class="card-title my-3 my-lg-5"><span class="mark-heading">Things To do Today</span></h4>
<div class="d-lg-flex justify-content-evenly my-4">
<div>
<p class="text-muted mt-3">Can't find your task ? 👀</p>
</div>
<div>
<input type="text" name="Search" id="search" class="form-control task-input" placeholder="Search Here 🔎">
</div>
</div>
<ul class="list-group list-group-flush" id="collection">
</ul>
</div>
</div>
<div class="card-footer text-muted">
<div class="container">
<ul class="list-group list-group-flush" id="collection-done">
</ul>
<button class="btn btn-submit my-4" id="clearall">Clear List</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4"
crossorigin="anonymous"></script>
<script src="app.js"></script>
</body>
</html>