这几个html标记元素是什么意思(27号早上9点前回答追加20分)

来源:百度知道 编辑:UC知道 时间:2024/05/30 20:41:48
<table border=1 align="center" bgcolor="#ffdddd" width=500 height=500>
这样回答就行:表格边框的粗细程度为1,内容基中,背景颜色为ffdddd,宽500,高500。(急用,自己查太慢,麻烦大家了)

<form method="post" action="workwage.jsp">
<table border=1 align="center" bgcolor="#ffdddd" width=500 height=200>
<caption><h2><font color="#ffcccc">优差评比查看</font></h2></caption>(这个h2是什么意思)

<tr align="center" valign="middle">
<td>要查看评比时间:</td>
<td><input type="text" name="the_month" id="the_month"></td>

<tr align="center" valign="middle">
<td><a href="worker.html">返回</a></td>
<td><input type="submit" value="查看"><input type="reset" v

<form method="post" action="workwage.jsp">
form标签 数据发送方式为post,发送目的为workage.jsp页面
<caption>标题标签 为table的子对象,表示table的标题
<font>字体标签 <h2>字块元素标签,用来表示标题字体大小的。
h1最大,h6最小

<tr align="center"(水平居中对齐) valign="middle"(竖直居中对齐)>
<td>要查看评比时间:</td>
<td><input type="text" name="the_month" id="the_month"></td>
input type="text" 文本框,属性the_month ,id为the_month

<tr align="center" valign="middle">
<td><a href="worker.html">返回</a></td>
<td><input type="submit" value="查看"><input type="reset" value="重置"></td>
<tr>行标签,属性意思同上
<td>标签,单元格。
<a>标签超级链接,链接地址为worker.html
<input type="submit" value="查看">
type="submi