-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (44 loc) · 1.8 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
<!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">
<link rel="stylesheet" href="styles.css">
<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=Cairo&display=swap" rel="stylesheet">
<title>Document</title>
</head>
<body>
<div class="page_title">
<h1 class="page_title_h1">Todos-List</h1>
</div>
<div class="body_div">
<div class= "input_div">
<div class="input_div_title">
<input type="text"placeholder ="Task-Title" class="input_div_title_input">
</div>
<div class="input_div_description">
<textarea placeholder="Task-Description" class="input_div_description_input" name="" id="" cols="30" rows="10"></textarea>
</div>
<button class="submit_button">Add to the list</button>
<button class = "clear-button">Clear list</button>
</div>
</div>
<div class="table_div">
<table class="table_div_table">
<thead class="table_div_table_head">
<tr class="table_div_table_head_row">
<td class="table_div_table_head_row_data">S.NO</td>
<td class="table_div_table_head_row_data">Title</td>
<td class="table_div_table_head_row_data">Description</td>
</tr>
</thead>
<tbody class="table_div_body">
</tbody>
</table>
</div>
<script src="index.js"></script>
</body>
</html>