<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>课程表</title>
<style type="text/css">
table {
width: 980px;
height: 520px;
background-image: url('../../images/back.jpg');
background-repeat: no-repeat;
background-size: 980px 520px;
box-shadow: 8px 8px 8px #666;
}
</style>
</head>
<body>
<table border="1" cellspacing="0" cellpadding="0">
<caption>
<h3>课程表</h3></caption>
<colgroup span="1" bgcolor="#0ABCF4"></colgroup>
<thead style="background-color: #16E856">
<tr>
<th rowspan="2">时间</th>
<th rowspan="2">执勤老师</th>
<th colspan="4">上午</th>
<th colspan="4">下午</th>
</tr>
<tr>
<th>1</th>
<th>2</th>
<th>3</th>
<th>4</th>
<th>5</th>
<th>6</th>
<th>7</th>
<th>辅导</th>
</tr>
</thead>
<tbody>
<tr>
<td>星期一</td>
<td><img src="../../images/wzx.jpg">王祖贤</td>
<td>语文</td>
<td>英语</td>
<td>地理</td>
<td>数学</td>
<td>历史</td>
<td>语文</td>
<td>英语</td>
<td>历史</td>
</tr>
<tr>
<td>星期二</td>
<td>
<img src="../../images/zmy.jpg">张曼玉</td>
<td>思品</td>
<td>英语</td>
<td>语文</td>
<td>生物</td>
<td>语文</td>
<td>数学</td>
<td>微机</td>
<td>生物</td>
</tr>
<tr>
<td>星期三</td>
<td><img src="../../images/zm.jpg">张 敏</td>
<td>语文</td>
<td>数学</td>
<td>英语</td>
<td>体育</td>
<td>地理</td>
<td>英语</td>
<td>数学</td>
<td>地理</td>
</tr>
<tr>
<td>星期四</td>
<td><img src="../../images/lqx.jpg">林青霞</td>
<td>思品</td>
<td>语文</td>
<td>数学</td>
<td>音乐</td>
<td>数学</td>
<td>英语</td>
<td>历史</td>
<td>思品</td>
</tr>
<tr>
<td>星期五</td>
<td><img src="../../images/zhm.jpg">周慧敏</td>
<td>数学</td>
<td>英语</td>
<td>美术</td>
<td>数学</td>
<td>体育</td>
<td>语文</td>
<td>班会</td>
<td>课外</td>
</tr>
</tbody>
</table>
</body>
</html>