-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFile12.html
39 lines (39 loc) · 880 Bytes
/
File12.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Attributes</title>
</head>
<body>
<h2>Specifing ROWSPAN and COLSPAN Attributes</h2>
<br>
<br>
<center>
<table border="2px">
<tr >
<th rowspan="2">NAME</th>
<th colspan="3">MARKS</th>
</tr>
<tr>
<th>PowerBuilder </th>
<th>Visual Basic</th>
<th>Develper2000</th>
</tr>
<tr align="center">
<td>Shilpa</td>
<td>21</td>
<td>45</td>
<td>30</td>
</tr>
<tr align="center">
<td>Vaishali</td>
<td>26</td>
<td>30</td>
<td>40</td>
</tr>
</table>
<h3>Mark Sheet</h3>
</center>
</body>
</html>