一.表格
<!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>Document</title>
</head>
<body>
<table
border="1"
width="80%"
align="center"
cellspacing="0"
cellpadding="5"
>
<caption style="font-weight: bolder; margin-bottom: 1em">
课时表
</caption>
<thead>
<tr bgcolor="lightcyan">
<th colspan="2">时间</th>
<th>星期一</th>
<!--td-->
<th>星期二</th>
<th>星期三</th>
<th>星期四</th>
<th>星期五</th>
<!-- <th></th> -->
</tr>
</thead>
<tbody>
<tr>
<th rowspan="3">上午</th>
<th>9:00-9:40</th>
<th>语文</th>
<th>数学</th>
<th>英语</th>
<th>音乐</th>
<th>体育</th>
<!-- <th></th> -->
</tr>
<tr>
<!-- <th></th> -->
<th>9:55-10:35</th>
<th>语文</th>
<th>数学</th>
<th>英语</th>
<th>音乐</th>
<th>体育</th>
</tr>
<tr>
<!-- <th></th> -->
<th>10:50-11:30</th>
<th>语文</th>
<th>英语</th>
<th>数学</th>
<th>音乐</th>
<th>体育</th>
</tr>
<tr>
<th colspan="7">午休(11:30-13:00)</th>
<!-- <th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th> -->
</tr>
<tr>
<th
rowspan="2
"
>
下午
</th>
<th>13:00-13:40</th>
<th>语文</th>
<th>英语</th>
<th>数学</th>
<th>音乐</th>
<th>体育</th>
</tr>
<tr>
<th>13:55-14:35</th>
<th>数学</th>
<th>英语</th>
<th>语文</th>
<th>体育</th>
<th>音乐</th>
<!-- <th></th> -->
</tr>
</tbody>
<tfoot>
<tr>
<th>备注</th>
<th colspan="6">每天16:00之前提交作业</th>
<!-- <>> -->
<!-- <th></th> -->
<!-- <th></th> -->
<!-- <th></th> -->
<!-- <th></th> -->
</tr>
</tfoot>
</table>
</body>
</html>
二。图片/链接/列表
<!DOCTYPE html>
<html lang="zh-CN">
<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>图片/链接/列表</title>
</head>
<body>
<ul class="nav" style="display: flex; list-style: none">
<li class="item">
<a href="https://www.php.cn/course/1401.html"><img src="static/images/623057031def7707.jpg" alt="" /></a>
</li>
<li class="item">
<a href="https://www.php.cn/course/1400.html"><img src="static/images/622efba5b8f59620.jpg" alt="" /></a>
</li>
<li class="item">
<a href="https://www.php.cn/course/1399.html"><img src="static/images/622ee24c8180c270.jpg" alt="" /></a>
</li>
</ul>
</body>
</html>