-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable2.html
More file actions
43 lines (43 loc) · 1.04 KB
/
table2.html
File metadata and controls
43 lines (43 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<title>Table Tags</title>
<style>
table{
text-align: center;
border:1px solid #000;
border-collapse:collapse;
}
tr,
td,
th{
border: 1px solid #000;
padding:10px;
}
</style>
<body>
<h2>HTML Table Tags</h2>
<table border ="2" style="border-color:black;">
<thead>
<th>username</th>
<th>password</th>
</thead>
<tbody>
<tr>
<td>Thapa</td>
<td>Vinod</td>
</tr>
<tr>
<td>Atharva</td>
<td>Darshan</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan ="2" align:center>count:2</td>
</tr>
</tfoot>
</table>
</body>
</head>
</html>