使用图片,链接,列表,写一个图文列表
view link
<!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>list</title>
</head>
<body>
<ul>
<li><a href="#"><img src="https://dave-xi.github.io/image/1.jpg" alt="testimage" style="width: 300px; height: 200px;"></a></li>
<li><a href="#"><img src="https://dave-xi.github.io/image/1.jpg" alt="testimage" style="width: 300px; height: 200px;"></a></li>
<li><a href="#"><img src="https://dave-xi.github.io/image/1.jpg" alt="testimage" style="width: 300px; height: 200px;"></a></li>
</ul>
</body>
</html>
课程表
view link
<!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>Dave—小学课程表</title>
</head>
<body>
<table border="1" width="450" cellspacing="0" cellpadding="5" align="center">
<!-- 表格标题 -->
<caption><h3>合肥市南门小学六年级课程表</h3></caption>
<!-- 表格头部 -->
<thead style="background-color: #e5e5e5;">
<tr>
<th>时间</th>
<th>周一</th>
<th>周二</th>
<th>周三</th>
<th>周四</th>
<th>周五</th>
</tr>
</thead>
<!-- 表格内容 -->
<tbody>
<!-- row_上午_1 -->
<tr>
<th rowspan="4" bgcolor="#e7f7f7">上午</th>
<th>数学</th>
<th>语文</th>
<th>语文</th>
<th>英语</th>
<th>体育</th>
</tr>
<!-- row_上午_2 -->
<tr>
<th>语文</th>
<th>法制</th>
<th>科学</th>
<th>数学</th>
<th>数学</th>
</tr>
<!-- row_上午_3 -->
<tr>
<th>音乐</th>
<th>语文</th>
<th>英语</th>
<th>电脑</th>
<th>数学</th>
</tr>
<!-- row_上午_4 -->
<tr>
<th>数学</th>
<th>数学</th>
<th>语文</th>
<th>语文</th>
<th>音乐</th>
</tr>
<!-- 中午休息 -->
<tr>
<th colspan="6">中午休息</th>
</tr>
<!-- row_下午_1 -->
<tr>
<th rowspan="3" bgcolor="#e7f7f7">下午</th>
<th>数学</th>
<th>语文</th>
<th>英语</th>
<th>数学</th>
<th>数学</th>
</tr>
<!-- row_下午_2 -->
<tr>
<th>数学</th>
<th>数学</th>
<th>数学</th>
<th>数学</th>
<th>数学</th>
</tr>
<!-- row_下午_3 -->
<tr>
<th>英语</th>
<th>数学</th>
<th>数学</th>
<th>数学</th>
<th>数学</th>
</tr>
</tbody>
<!-- 表格底部 -->
<tfoot style="background-color: #e5e5e5;">
<tr>
<th>备注</th>
<th colspan="5">每天下午15:30-17:30在校写完作业才可回家</th>
</tr>
</tfoot>
</table>
</body>
</html>