-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpt3.html
More file actions
104 lines (95 loc) · 1.99 KB
/
pt3.html
File metadata and controls
104 lines (95 loc) · 1.99 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<html>
<head>
<title>HTML TABLE</title>
<style>
table, th, td{
border: 2px solid black;
padding: 2px;
border-collapse: collapse;
}
</style>
</head>
<body>
<table border="3">
<tr>
<th>County</th>
<th>State</th>
<th>City</th>
<th>Street</th>
<th>Male</th>
<th>Female</th>
<th>Others</th>
</tr>
<tr>
<td rowspan="8">1</td>
<td rowspan="4">kerala</td>
<td rowspan="2">cochin</td>
<td>new street</td>
<td>500</td>
<td>600</td>
<td>6</td>
</tr>
<tr>
<td>main street</td>
<td>300</td>
<td>288</td>
<td>2</td>
</tr>
<tr>
<td rowspan="2">trivandrum</td>
<td>guru street</td>
<td>500</td>
<td>600</td>
<td>10</td>
</tr>
<tr>
<td>tvk street</td>
<td>500</td>
<td>600</td>
<td>2</td>
</tr>
<tr>
<td rowspan="4">maharastra</td>
<td rowspan="2">mombai</td>
<td>krishna street</td>
<td>700</td>
<td>850</td>
<td>1</td>
</tr>
<tr>
<td>main street</td>
<td>500</td>
<td>600</td>
<td>2</td>
</tr>
<tr>
<td rowspan="2">surath</td>
<td>new street</td>
<td>500</td>
<td>600</td>
<td>4</td>
</tr>
<tr>
<td>billa street</td>
<td>500</td>
<td>600</td>
<td>2</td>
</tr>
<tr>
<td rowspan="2">2</td>
<td rowspan="2">Alaska</td>
<td rowspan="2">AKA Central</td>
<td>new street</td>
<td>200</td>
<td>210</td>
<td>2</td>
</tr>
<tr>
<td>cross street</td>
<td>1000</td>
<td>1050</td>
<td>10</td>
</tr>
</table>
</body>
</html>