forked from ShahrozAhmd/todo-vanillajs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·61 lines (39 loc) · 1.47 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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./style.css">
<title>Document</title>
</head>
<body>
<div class="container">
<div class="child-container" id="child-container">
<div class="get-data">
<div class="get-data-container">
<div class="input-box-container">
<input type="text" class="add-task-box" id="write-task">
</div>
<div class="btn-container">
<button class="get-task-btn" id="add-task-btn" ><i class="fa fa-plus-square">
</i> Add Task</button>
</div>
</div>
</div>
<div class="show-data" id='show-data'>
<table id="table">
<tr>
<th>Sno</th>
<th>Task</th>
<th>Date</th>
<th>Action</th>
</tr>
</table>
</div>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>