-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (105 loc) · 4.51 KB
/
index.html
File metadata and controls
118 lines (105 loc) · 4.51 KB
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
<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">
<meta name="description" content="ToDo site for Managing your tasks" />
<meta name="keywords"
content="HTML, CSS, JavaScript, Hesam, Asnaashari, Hesam Asnaashari, ToDo, , Task, Managing, trello, checklist, asnaahsari.com" />
<meta name="author" content="Hesam Asnaashari" />
<title>ToDo</title>
<link rel="shortcut icon" type="image/png" href="img/check.png" />
<link rel="stylesheet" href="Css/Main.css">
<script src="https://kit.fontawesome.com/5ae95ba696.js" crossorigin="anonymous"></script>
<script src="Js/Main.js" defer></script>
</head>
<body>
<!-- <i class="fas fa-atom" style="font-size: 64px;"></i> -->
<!-- <input type="datetime-local"> -->
<div class="main">
<div class="header">
<div class="logo">
<img src="./img/check.png" alt="ToDo Logo">
<span>ToDo</span>
</div>
<div class="timer">
<div style="display: block;">
<div class="time" id="test">23:40:01</div>
<div class="sub">ToDo The closest task</div>
</div>
<div style="display: none;">
<div class="time" id="timer-time">😴</div>
<div class="sub" id="timer-sub">There's Nothing to do</div>
</div>
</div>
</div>
<div class="tasks">
<ul id="task-list">
<!-- <li>
<div class="task-line">
<div style="display: flex; align-items: center;">
<button id="check">
<i class="far fa-circle"></i>
</button>
<div style="font-size: 1.2vmax; margin-left: 10px;">
Task one for demo in progress and bookmarked ...
</div>
</div>
<div>
<div style="display: flex; align-items: center;">
<div style="margin-right: 20px; font-size: 1.2vmax;">
Wednesday, April 20 23:10
</div>
<button id="bookmark">
<i class="far fa-bookmark"></i>
</button>
</div>
</div>
</div>
</li> -->
</ul>
</div>
<div class="add-new-task">
<div class="task-line">
<div style="display: flex; align-items: center;">
<button id="add" onclick="plus()">
<i class="fas fa-plus"></i>
</button>
<div style="font-size: 1.2vmax; margin-left: 10px;">
<input type="text" placeholder="Let's add new Task ..." name="task-text" id="task-text"
class="input">
</div>
</div>
<div>
<div style="display: flex; align-items: center;">
<!-- <input type="datetime-local" id="dateAndTime"> -->
<div style="margin-right: 20px; font-size: 1.2vmax;">
<input type="datetime-local" id="dateAndTime" value="0000-00-00T00:00">
</div>
<button id="bookmark" onclick="">
<i class="far fa-bookmark"></i>
</button>
</div>
</div>
</div>
<!-- <div class="task-line">
<div>
<button id="add">
<i class="fas fa-plus"></i>
</button>
<input type="text" name="task-text" id="task-text" class="input">
</div>
<div style="font-size: 1.2vmax;">
</div>
<div>
<input type="datetime-local" id="dateAndTime"> <button id="bookmark">
<i class="far fa-bookmark"></i>
</button>
</div>
</div> -->
</div>
<div class="footer">
</div>
</div>
</body>
</html>