HTML/Html-Notes/07-表格demo.html
2023-05-01 19:37:40 +08:00

78 lines
1.7 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width-device-width,initial-scale=1.0">
<title> 表格demo</title>
<style>
table {
background-color: #E6EAF2;
}
td {
height: 40px;
}
</style>
</head>
<body>
<!-- -->
<table border="1">
<!-- 1 -->
<tr>
<th colspan="2">《课程一》静态网站开发 </th>
</tr>
<!-- 2 -->
<tr>
<td style="text-align: center;">第一章</td>
<td>《基础班》开学典礼</td>
</tr>
<!-- 3 -->
<tr>
<td colspan="2">(互联网概述|什么是网站|什么是网页|构成网页的元素|网站制作流程详解|怎样才能学号拿高弱|web前端开发职业的前途|web前端开发课程目标及</td>
</tr>
<!-- 4 -->
<tr>
<td style="text-align: center;">第二章</td>
<td> HTML常用标签+背景 </td>
</tr>
<!-- 5 -->
<tr>
<td colspan="2"></td>
</tr>
<!-- 6 -->
<tr>
<td style="text-align: center;">第三章</td>
<td> 元素选择符+背景 </td>
</tr>
<!-- 7 -->
<tr>
<td colspan="2"></td>
</tr>
<!-- 8 -->
<tr>
<td rowspan="3" style="text-align: center;">第四章</td>
<td>
css样式(FOnt+Text)+特殊符号
</td>
</tr>
<!-- 9 -->
<tr>
<td>特殊符号</td>
</tr>
<!-- 10 -->
<tr>
<td>(Font+Text)</td>
</tr>
<!-- 11 -->
<tr>
<td colspan="2"></td>
</tr>
</table>
</body>
</html>