HTML5简单的表格制作(1)
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
HTML5简单的表格制作(1)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<table border="3" width="500" bgcolor="aqua" align="center" cellpadding="5" cellspacing="1">
<caption><h3>@@2018学⽣表@@@@@@</h3></caption>
<tr align="center" bgcolor="white" height="50" onmouseover="this.bgColor='yellow'" onmouseout="this.bgColor='white'"> <td>学号</td>
<td>姓名</td>
<td>专业</td>
<td>成绩</td>
<td>家庭住址</td>
</tr>
<tr align="center" bgcolor="#faebd7" onmouseover="this.bgColor='yellow'" onmouseout="this.bgColor='#faebd7'">
<td>201807</td>
<td>柱⼦</td>
<td>美术</td>
<td>80</td>
<td> </td>
</tr>
<tr align="center" bgcolor="white" onmouseover="this.bgColor='yellow'" onmouseout="this.bgColor='white'">
<td>201807</td>
<td>⽛⼦</td>
<td>⾳乐</td>
<td>80</td>
<td> </td>
</tr>
<tr align="center" bgcolor="#faebd7" onmouseover="this.bgColor='yellow'" onmouseout="this.bgColor='#faebd7'">
<td>201807</td>
<td>⼆炮</td>
<td>英语</td>
<td>80</td>
<td> </td>
</tr>
<tr align="center" bgcolor="white" onmouseover="this.bgColor='yellow'" onmouseout="this.bgColor='white'">
<td>201807</td>
<td>奇犽</td>
<td>语⽂</td>
<td>80</td>
<td> </td>
<tr align="center" bgcolor="#faebd7" onmouseover="this.bgColor='yellow'" onmouseout="this.bgColor='#faebd7'">
<td>201807</td>
<td>萨拉</td>
<td>数学</td>
<td>80</td>
<td> </td>
</tr>
<tr align="center" bgcolor="white" onmouseover="this.bgColor='yellow'" onmouseout="this.bgColor='white'">
<td>201807</td>
<td>烟⽛</td>
<td>化学</td>
<td>80</td>
<td> </td>
<tr align="center" bgcolor="#faebd7" onmouseover="this.bgColor='yellow'" onmouseout="this.bgColor='#faebd7'">
<td>201807</td>
<td>邓琳</td>
<td>物理</td>
<td>80</td>
<td> </td>
</tr>