|
需要购买此门答案请加qq2762169544(微信:2762169544)
下列程序(form1.html)用于输出不同样式的两个表格。请在程序中的序号处填写正确内容将程序补充完整,并给出该程序的运行结果(程序执行后在浏览器窗口显示的内容,对结果可用word画出,不要以图片形式保存,以免超过上传文件大小的限制)。(本小题20分)
<html><head> <title>表格范例</title></head>
<body><center>
<p><font ____①___="楷体_GB2312" size="5" color="#800080">商品一览表____②____
<table border="0" width="291">
<tr>
<th width="112" align="left"><font size="2">商品名称</font></th>
<th width="72"><font size="2">单位</font></th>
<th width="87" align="right"><font size="2">单价</font></th>
</tr>
<tr>
<td width="112"><font size="2">电视机</font></td>
<td align="center" width="72"><font size="2">台</font>
<td align="right" width="87"><font size="2">$13,699</font>
</tr>
<tr>
<td width="112"><font size="2">三门冰箱</font></td>
<td align="center" width="72"><font size="2">台</font>
<td align="right" width="87"><font size="2">$2,699</font>
</tr>
<_____③_____>
<p><font face="楷体_GB2312" color="#0000FF" size="5">职工表</font></p>
<table border="1"_______④_______="50%">
<tr>
<th width="25%" align="center"><font size="2">姓名</font></th>
<th width="20%" align="center"><font size="2">性别</font></th>
<th width="20%" align="center"><font size="2">年龄</font></th>
<th width="35%" align="center"><font size="2">联系电话</font></th>
</tr>
<tr>
<td width="25%" align="center"><font size="2">李宏刚</font></td>
<td width="20%" align="center"><font size="2">男</font></td>
<td width="20%" align="center"><font size="2">43</font></td>
<td width="35%" align="center"><font size="2">87365432</font></td>
</tr>
<tr>
<td width="25%" align="center"><font size="2">张红</font></td>
<td width="20%" align="center"><font size="2">女</font></td>
<td width="20%" align="center"><font size="2">26</font></td>
<td width="35%" align="center"><font size="2">85262468</font></td>
</tr>
</table></center>
<_______⑤_______>
</html>
|
|