-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (66 loc) · 2.86 KB
/
index.html
File metadata and controls
102 lines (66 loc) · 2.86 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
<!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>Project 1 - Eyal Sberro</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Caveat&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
<script src="https://kit.fontawesome.com/9325aa131c.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- header -->
<header>
<h1>
My Task board
</h1>
</header>
<!-- Task Part -->
<section>
<div class="container">
<input type="text" id="textInput" placeholder="Write Your Task Here....">
<div class="date">
<p>Due Date:</p>
<input type="date" id="dateInput">
</div>
<div class="time">
<p>Due Time:</p>
<input type="time" id="timeInput">
</div>
<div class="btns">
<button type="button" class="btn btn-primary">Add Task</button>
<button type="button" class="btn btn-danger">Empty for a new task</button>
</div>
<p class="warning"></p>
</div>
</section>
<!-- Note Part -->
<section class= "notePart">
<div class="card" style="width: 18rem;">
<img src="/img/notebg.png" class="card-img-top">
<div class="card-img-overlay">
<button class="btnIcon"><i class="far fa-times-circle fa-lg"></i></button>
<p class="card-text">Lorem ipsum dolor sit amet consectetur adipisicing
elit. Illo dolor, mollitia nostrum perferendis
architecto dignissimos soluta quaerat, ad reprehenderit reiciendis
sit nesciunt beatae t reiciendissit nesciunt beatae t reiciendis
sit nesciunt beatae t reicsit nesciunt beatae iusto sunt at aut velit inventore ut.</p>
<div class="inputsDateTime">
<p class="inputDate">
21-10-2021
</p>
<p class="inputTime">
18:55
</p>
</div>
</div>
</div>
</section>
</body>
</html>