-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (71 loc) · 2.41 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
<!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>Document</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
</head>
<body>
<div class="container">
<div class="box">
<nav>
<ul class="notSelect">
<li class="listDay">Day</li>
<li class="listDay">Week</li>
<li class="listDay">Month</li>
<li class="listDay">Year</li>
</ul>
</nav>
<section class="one">
<!-- Slide Date -->
<div class="date-box notSelect">
<i class="fas fa-chevron-left notSelect dart"></i>
<div class="date dayD">
<h1 class="dateDay"></h1>
<p class="dateMonth"></p>
</div>
<i class="fas fa-chevron-right notSelect dart"></i>
</div>
</section>
<div class="section2">
<div class="add-box">
<img src="img/bars.png" class="" alt="" />
<input type="text" placeholder="Add a task..." id="todo-input" />
<i class="fas fa-folder-plus"></i>
</div>
<div class="card-body">
<ul class="list-group">
<!-- <li class="list-group-item">
<i class="fas fa-thumbtack"></i>
<input type="checkbox" />
<label for="" class="text-input"></label>
<i class="fas fa-ellipsis-h"> </i>
<ul class="hidden">
<li class="hiddenList">
<img src="img/mark.png" alt="" />
<span class="textsize">Pin on the top</span>
</li>
<li class="hiddenList">
<img src="img/file.png" alt="" />
<span class="textsize"> Add a memo</span>
</li>
<li class="hiddenList">
<img src="img/delete.png" alt="" />
<span class="textsize">Delete</span>
</li>
</ul>
</li> -->
</ul>
</div>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>