-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (117 loc) · 3.76 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!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" />
<title>To Do List</title>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body class="body">
<header>
<h1>Task <span style="color: blue">List</span></h1>
</header>
<p class="add-new">
<a href="./demo.html"
><svg
xmlns="http://www.w3.org/2000/svg"
width="25"
height="25"
fill="currentColor"
class="bi bi-plus-circle"
viewBox="0 0 16 16"
>
<path
d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"
/>
<path
d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"
/>
</svg>
<span class="visiable"> New Task</span>
</a>
</p>
<div class="container">
<div class="fixed-column">
<a href="./pages/card-1.html"><h2>Trip to Pris</h2></a>
<hr />
<label class="contain"
> <spen> Visit Church</spen>
<input type="checkbox" checked="checked" />
<span class="checkmark"></span>
</label>
<label class="contain"
> Shopping
<input type="checkbox" />
<span class="checkmark"></span>
</label>
</div>
<div class="fixed-column">
<a href="./pages/card-2.html"><h2>My To Do List</h2></a>
<hr />
<!-- Start -->
<label class="contain"
> <spen> Visit Supermarket</spen>
<input type="checkbox" checked="checked" />
<span class="checkmark"></span>
</label>
<label class="contain"
> Buy Vegetables
<input type="checkbox" />
<span class="checkmark"></span>
</label>
<!-- end -->
</div>
<div class="fixed-column">
<a href="./pages/card-3.html"><h2>Movies I will Watch</h2></a>
<hr />
<!-- ===== Started ====== -->
<label class="contain"
> <spen> Stranger Things 4</spen>
<input type="checkbox" checked="checked" />
<span class="checkmark"></span>
</label>
<label class="contain"
> Avengers Endgame
<input type="checkbox" />
<span class="checkmark"></span>
</label>
<!-- ===== ended ====== -->
</div>
</div>
<div class="container">
<div class="fixed-column">
<a href="./pages/card-4.html"><h2>Daily Morning Routine for...</h2></a>
<hr />
<!-- ===== Started ====== -->
<label class="contain"
> <spen> Wake up at 6 AM</spen>
<input type="checkbox" checked="checked" />
<span class="checkmark"></span>
</label>
<label class="contain"
> Sleep at 10 PM
<input type="checkbox" />
<span class="checkmark"></span>
</label>
<!-- ===== ended ====== -->
</div>
<div class="fixed-column">
<a href="./pages/card-5.html"><h2>Books to Read</h2></a>
<hr />
<!-- ===== Started ====== -->
<label class="contain"
> <spen> Visit Church</spen>
<input type="checkbox" checked="checked" />
<span class="checkmark"></span>
</label>
<label class="contain"
> Design of Everyday
<input type="checkbox" />
<span class="checkmark"></span>
</label>
<!-- ===== ended ====== -->
</div>
</div>
</body>
</html>