-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (61 loc) · 2.57 KB
/
index.html
File metadata and controls
61 lines (61 loc) · 2.57 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
<!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">
<!--css-->
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/12866d3651.js" crossorigin="anonymous"></script>
<!--bootstrap-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<!-- google font - cursive-->
<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=Indie+Flower&display=swap" rel="stylesheet">
<title>My Task Board</title>
</head>
<body>
<div class="myTitle">
<h1 class="text-center title"><strong>My Task Board</strong></h1>
</div>
<div class="container">
<div class="row">
<div class="col">
</div>
</div>
<main>
<div class="row g-0">
<div class="col-10">
<form id="form">
<div class="col">
<textarea id="task" placeholder="Please Type Here New Task..." required></textarea>
</div>
<div class="col" id="do-date">
<label><strong> Date :</strong></label>
<input type=date id="date" required></input>
<br>
<label><strong> Time :</strong></label>
<input type="time" id="hour" required>
</div>
<footer>
<div class="col" id="buttoms">
<button type="button" class="btn btn-success" onclick=" checkValid()" onclick=" cleanForm()"
id="save-btn">Save</button>
<button type="button" class="btn btn-danger" onclick="cleanForm()"
id="clear-btn">Clear Board</button>
</div>
</footer>
</div>
</form>
</div>
</main>
<div class="row" id="task-container">
</div>
</div>
<!--JS-->
<script src="main.js"></script>
</script>
</body>
</html>