html

form标签

<form>
<input type="text" name="username">
<input type="password" name="pwd">
<input type="checkbox" name="hobby" value="music">
<input type="radio" name="gender" value="1">
<input type="file" name="filename">
<input type="sumbit" name="注册">
<input type="button" name="注册">
<input type="reset" name="重置">
<select>
  <option value=""></option>
  <option value=""></option>
</select>

<textarea name="">
  
</textarea>
</form>

  

table标签

  <table border="1px soild">
        <thead> 基本不用
            <tr>
            <th>123</th>
            <th>456</th>
            <th>66</th>
        </tr>
        </thead>
        <tbody> 基本不用
            <tr>
                <td rowspan="2">14</td>
                <td>14</td>
                <td>14</td>
            </tr>
            <tr>

                <td>s</td>
                <td>14</td>
            </tr>
            <tr>
                <td>1sd</td>
                <td colspan="2">1dsa4</td>
            </tr>
        </tbody>
    </table>

 

posted @ 2019-01-07 20:14  Luciferl  阅读(82)  评论(0编辑  收藏  举报