-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathanhui.html
57 lines (48 loc) · 1.18 KB
/
anhui.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>What is woring ?</title>
</head>
<body>
<center>
<table border="1" bordercolor="#555555" height="150" width="200" cellpadding="4" cellspacing="6" >
<caption>学生成绩表</caption>
<tr>
<th colspan="2">项目1</th>
<th colspan="2">项目2</th>
</tr>
<tr>
<th bgcolor="#003399">姓名</th>
<th>性别</th>
<th>年龄</th>
<th>成绩</th>
</tr>
<tr>
<td>border</td>
<td>男</td>
<td>16</td>
<td>66</td>
</tr>
</tr>
<tr>
<td>sendy</td>
<td>女</td>
<td>17</td>
<td>70</td>
</tr>
<tr>
<td>pekai</td>
<td>女</td>
<td>16</td>
<td>99</td>
</tr>
<tr>
<td>cary</td>
<td>女</td>
<td >17</td>
<td >60</td>
</tr>
</table>
</body>
</html>