<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Matrix</title>
<style>
table {
border-collapse: collapse;
width: 100%;
}
th, td {
border: 1px solid black;
padding: 8px;
text-align: center;
}
th {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<h1>Matrix</h1>
<table>
<tr>
<th>Column A</th>
<th>Column B</th>
</tr>
<tr>
<td>Row 1, Column A</td>
<td>Row 1, Column B</td>
</tr>
<tr>
<td>Row 2, Column A</td>
<td>Row 2, Column B</td>
</tr>
<tr>
<td>Row 3, Column A</td>
<td>Row 3, Column B</td>
</tr>
</table>
</body>
</html>
这个HTML代码会生成一个带有行标签和列标签的矩阵。<table>
标签用于定义表格,<tr>
标签用于定义行,<th>
标签用于定义表头单元格,<td>
标签用于定义数据单元格。在表格中,我们还使用CSS样式来设置表格的边框,背景和字体。
领取专属 10元无门槛券
手把手带您无忧上云