不知道怎么做提问,DW急!

具体问题具体分析,我也不知道怎么写,反正谁能在半个小时写出来呀,急!

img

img


<body>
    <table>
        <tbody>
            <tr>
                <td>
                    请输入账号:
                </td>
                <td>
                    <input placeholder="用户名">
                </td>
            </tr>

            <tr>
                <td>
                    请输入密码:
                </td>

                <td>
                    <input type="password" value="12345678">
                </td>
            </tr>

            <tr>
                <td>
                    请输入性别:
                </td>

                <td><input type="radio" name="sex" value="0" checked="checked"><input type="radio" name="sex" value="1">
                </td>
            </tr>

            <tr>
                <td colspan="2">
                    <p>
                        请输入自我介绍
                    </p>
                    <textarea class="textbox"></textarea>
                </td>


            </tr>
            <tr>
                <td colspan="2">
                    <button class="addbtn">
                        立即注册
                    </button>
                </td>


            </tr>

        </tbody>
    </table>


    <style>
        .textbox{
          width:100%;
          height:200px; 
        }
        .addbtn{
          box-shadow:0 0 5px #5cd053;
          border:#28921f;
          border-radius:10px;
          background-image: linear-gradient(to top, #68b12f,#50911e);
          color:#fff;
          font-weight:bold;
          padding:6px 10px;
        }
    </style>
</body>

我马上写

body里面得代码:


<form>
  <label for="username">账号:</label>
  <input type="text" id="username" name="username">
  <br>
  <label for="password">密码:</label>
  <input type="password" id="password" name="password">
  <br>
  <label for="gender">性别:</label>
  <input type="radio" id="gender-male" name="gender" value="male">
  <label for="gender-male"></label>
  <input type="radio" id="gender-female" name="gender" value="female">
  <label for="gender-female"></label>
  <br>
  <label for="introduction">自我介绍:</label>
  <br>
  <textarea id="introduction" name="introduction"></textarea>
  <br>
  <button type="submit">立即注册</button>
</form>

按钮样式为:


button {
  box-shadow: 0 0 5px rgba(92, 208, 83, 0.5);
  border: 10px solid #28921f;
  border-radius: 10px;
  background: linear-gradient(to top, #68b12f, #50911e);
  color: #fff;
  font-weight: bold;
}