-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
49 lines (46 loc) · 1.5 KB
/
table.html
File metadata and controls
49 lines (46 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<STYLE>
table, tr,td{
border:1px solid blue;
border-collapse: collapse;
}
</STYLE>
</head>
<body>
<!-- to make border in our table we use style -->
<!-- border is used to make border of the table -->
<!-- usually two line are between each row so to make one line between each row we use border collapse -->
<!--<thead> isliye lagaya kyoki pta chna cahiye head kya hai generally it is the first row of the table -->
<!-- table body is used in the body of the table except st row and last row every thing is body -->
<!-- table foot is the last row of the table -->
<table>
<caption>savings table</caption>
<thead><tr> <!-- table row-->
<th>month</th><!--th mean table heading isko lagane se heading thodi bold ho jaati hai-->
<th>saving</th>
</tr>
</thead>
<tbody>
<tr>
<td>jan</td><!--table data /column-->
<td>200</td>
</tr>
<tr>
<td>feb</td>
<td>300</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>total</td>
<td>500</td>
</tr>
</tfoot>
</table>
</body>
</html>