html实战例子: 课程表

效果图:
在这里插入图片描述
代码:

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>课表</title>
</head>
<body>
	<table border="1" cellpadding="20" align="center">
		<caption>课程表</caption>
		<tr>
			<th colspan="2">时间\日期</th>
			<th></th>
			<th></th>
			<th></th>
			<th></th>
			<th></th>
		</tr>
		
		<tr>
			<td rowspan="4">上午&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
			<td>8:00-8:50</td>
			<td>数学</td>
			<td>数学</td>
			<td>数学</td>
			<td>数学</td>
			<td>数学</td>
		</tr>

		<tr>
			<td>9:00-9:50</td>
			<td>英语</td>
			<td>英语</td>
			<td>英语</td>
			<td>英语</td>
			<td>英语</td>
		</tr>

		<tr>
			<td>10:10-11:00</td>
			<td>语文</td>
			<td>语文</td>
			<td>语文</td>
			<td>语文</td>
			<td>语文</td>
		</tr>

		<tr>
			<td>11:10-12:00</td>
			<td>体育</td>
			<td>体育</td>
			<td>体育</td>
			<td>体育</td>
			<td>体育</td>
		</tr>

		<tr><td colspan="7" height="2"></td></tr>

		<tr>
			<td rowspan="3">下午&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
			<td>14:30-15:20</td>
			<td>编程</td>
			<td>编程</td>
			<td>编程</td>
			<td>编程</td>
			<td>编程</td>
		</tr>

		<tr>
			<td>15:30-16:20</td>
			<td>前端</td>
			<td>前端</td>
			<td>前端</td>
			<td>前端</td>
			<td>前端</td>
		</tr>

		<tr>
			<td>16:30-17:20</td>
			<td>前端</td>
			<td>前端</td>
			<td>前端</td>
			<td>前端</td>
			<td>前端</td>
		</tr>
	</table>
</body>
</html>

猜你喜欢

转载自blog.csdn.net/qq_46527915/article/details/120577014
今日推荐