<html> <head> <title>订单</title> </head> <body bgcolor="#FFFFFF" text="#000000"> <h2>彩色电视机</h2> ①___________________________ <dl> ②__________________________ </dl> <ol> <li>100赫兹不闪烁〈/li〉 <li>800线高分辨率〈/li〉 </ol> <ul> <li>卖点:</li> </ul> <ol> ③_____________________________ <li>免费送货(十公里内) </li> </ol> ④_____________________________ <hr> <p>ABC©Inc.,版权所有</p> </body> </html> 40.有如下HTML代码,请在题40图的浏览器(IE)窗口的相应空白位置填上与这段代码对应的显示结果(8分)。 <html> <head> <title>定单</title> </head> <body bgcolor="#FFFFFF" text="#000000"> <h2>请添入您的定单资料</h2> <hr> <form name="myform" method="post" action="getinfor. asp"> 您的姓名<input type="text" name="textfieldl"> <br> 您是一位 <input type="radio" name="radiobutton1" value="radiobutton">先生 <input type ="radio" name="radiobutton2" value ="radiobutton" checked>小姐<br> 电子邮件地址 <input type="text" name="textfield2"> <br> 您看中的产品号是<input type="text" name="textfield3" value="诺基亚8210"> <br> 您的会员密码 <input type="password" name="textfield4" value="12345678"> <br> <input type="submit" name="Submit1" value="提交"> <input type="submit" name="Submit2" value="重填"> </form> <hr> </body> </html>
|