-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpt2.html
More file actions
48 lines (32 loc) · 763 Bytes
/
pt2.html
File metadata and controls
48 lines (32 loc) · 763 Bytes
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
<html>
<head>
<title>HTML ELEMENT</title>
</head>
<body>
<h1> Table rowspan</h1>
<table border="1" cellpadding="10" cellspacing="20">
<tr>
<th>#</th>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<th>Name</th>
<td>Keerthana</td>
<td>Kavya</td>
<td>Neeraja</td>
</tr>
<tr>
<th rowspan="2">Mobile</th>
<td>100</td>
<td>200</td>
<td>300</td>
</tr>
<tr>
<td>1000</td>
<td>2000</td>
<td>3000</td>
</table>
</body>
</html>