-
Notifications
You must be signed in to change notification settings - Fork 0
/
Project-Tasks Form.html
51 lines (41 loc) · 1.63 KB
/
Project-Tasks Form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="Project Tasks Form - Stylesheet .css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>Things TO DO</title>
</head>
<body onload="loadTasks()">
<!--כותרת הדף-->
<h1 style="font-size: 50px;"> My Task Board </h1>
<!--הטופס למילוי פרטי המשימה-->
<form>
<table align="center">
<tr>
<td> <label for="task"> The Task:</label> </td>
<td> <input type="text" id="task" /> </td>
</tr>
<tr>
<td> <label for="date"> Date:</label> </td>
<td> <input type="date" id="date" /> </td>
</tr>
<tr>
<td> <label for="time"> Time:</label> </td>
<td> <input type="time" id="time" /> </td>
</tr>
</table>
<!--הכפתור לאיפוס הטופס-->
<button type="reset" class="btn btn-dark"> RESET </button>
<!--הכפתור לשמירת המשימה-->
<button type="reset" class="btn btn-dark" onclick="saveTask()"> SAVE </button>
</form>
<!-- איזור הפתקים -->
<div id="container-notes">
</div>
<script src="Project Tasks Form - javascript .js"></script>
</body>
</html>