-
Notifications
You must be signed in to change notification settings - Fork 0
/
table3.html
72 lines (60 loc) · 1.32 KB
/
table3.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<table border="1px" bgcolor="yellow" align="center" height="90px" width="250px" cellspacing="5px" cellpadding="10px">
<tr>
<th></th>
<th colspan="5">A</th>
<th colspan="2">B</th>
</tr>
<tr>
<th rowspan="6"></th>
<th>c</th>
<th>D</th>
<th>D</th>
<th colspan="2">E</th>
<th colspan="2">F</th>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>6</td>
<td colspan="2">student</td>
<td>FSJ</td>
<td>FSP</td>
</tr>
<tr>
<td>2</td>
<td>3</td>
<td>7</td>
<td colspan="2">faculty</td>
<td>50</td>
<td>50</td>
</tr>
<tr>
<td>3</td>
<td>4</td>
<td>5</td>
<td colspan="2">staff</td>
<td>100</td>
<td>345</td>
</tr>
<tr>
<td rowspan="2">Total</td>
<td rowspan="2"></td>
<td rowspan="2"></td>
<td rowspan="2"></td>
<td rowspan="2"></td>
<td rowspan="2">interview</td>
<td colspan="2">fser</td>
</tr>
<tr>
<td colspan="2">vcds</td>
</tr>
</body>
</html>