-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
90 lines (71 loc) · 2.02 KB
/
table.html
File metadata and controls
90 lines (71 loc) · 2.02 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
<!--
* @由于个人水平有限, 难免有些错误, 还请指点:
* @Author: cpu_code
* @Date: 2020-08-11 17:57:47
* @LastEditTime: 2020-08-11 18:08:40
* @FilePath: \web\table\table.html
* @Gitee: [https://gitee.com/cpu_code](https://gitee.com/cpu_code)
* @Github: [https://github.com/CPU-Code](https://github.com/CPU-Code)
* @CSDN: [https://blog.csdn.net/qq_44226094](https://blog.csdn.net/qq_44226094)
* @Gitbook: [https://923992029.gitbook.io/cpucode/](https://923992029.gitbook.io/cpucode/)
-->
<html>
<head>
<title> table </title>
</head>
<body>
<!-- 定义表格的开始 -->
<table border=10>
<!-- 定义表格的标题 -->
<caption>
table
</caption>
<!-- 定义一行标签 -->
<tr align=center>
<!-- 定义表头单元格 , 必须放在 tr 内 -->
<th colspan = 3>
学生信息
</th>
<th colspan = 2>
成绩
</th>
</tr>
<tr align = center>
<th>
姓名
</th>
<th>
性别
</th>
<th>
专业
</th>
<th>
课程
</th>
<th>
分数
</th>
</tr>
<tr align = center>
<!-- 定义单元格标签 , 必须放在 tr 内-->
<td>
cpucode
</td>
<td>
男
</td>
<td>
电子信息工程
</td>
<td>
web开发
</td>
<td>
99
</td>
</tr>
<!-- 定义表格的结束 -->
</table>
</body>
</html>