-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtabletag.html
54 lines (51 loc) · 1.18 KB
/
tabletag.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
<html>
<head>
<title>table</title>
</head>
<body>
<table border="5px" align="center" bgcolor="yellow" cellpadding="10" cellspacing="10" width="500" height="300" >
<thead>
<tr>
<th>Name</th>
<th>Address</th>
<th>Subject</th>
</tr>
</thead>
<tbody>
<tr bgcolor="red" align="center">
<td bgcolor="white" align="left">
Naresh
</td>
<td>
Rajasthan
</td>
<td>
python
</td>
</tr>
<tr>
<td>
Kamlesh
</td>
<td>
Gujrat
</td>
<td>
Arts
</td>
</tr>
<tr>
<td>
Rahul
</td>
<td>
kolkata
</td>
<td>
Science
</td>
</tr>
</tbody>
</table>
</body>
</html>