html table exercise

2020-04-12 One case a day on the 34th day

1. Form requirements:

 

 

 

 

2. Code:

 

 

 

 

<pre> <html>
<head> <!-Title statement->
<tittle> Student score </ tittle> <!-Title->
</ head>
<br />
<center>
<body> < !-Content->

 

<table border="1" height="200" width="300">
<thead>
<tr>
<th colspan="3" height="50" >学生成绩表</th>
</tr>
</thead>

 

<tbody>
<tr>
<td align="center" width="100">英语</td>
<td align="center" width="100">数学</td>
<td align="center" width="100" >语文</td>
</tr>
<tr>
<td align="center" width="100" >100</td>
<td align="center" width="100">95</td>
<td align="center" width="100">85</td>
</tr>
</tbody>
</table>

 

</body></br color="blue";size="7">
</center>
</html></pre>

 

 

 

Guess you like

Origin www.cnblogs.com/ljs7490/p/12688782.html