表单的制作

<form>
  <fieldset>
  <legend>账户信息:</legend>
  <span style="color:red">*</span>用户名:<input type="text"><br/>
  <span style="color:red">*</span>密码:<input type="password"><br/>
  性别:<input type="radio" name="1" checked id="man"><label for="man"></label> <input type="radio" name="1" id="woman"><label for="woman"></label>
  </fieldset>
  <fieldset>
  <legend>公司信息:</legend>
  公司名称:<input type="text"><br/>
  公司所在地址:<select><option>-请选择-</option></select>
  <select><option>-请选择-</option></select>
  <select><option>-请选择-</option></select><br/>
  购买类型用途:<input type="checkbox">IT<input type="checkbox">通讯设备<input type="checkbox">大家电<input type="checkbox">办公耗材<br/>
  公司行业:<select size="4"><option>IT行业</option><option>计算机软件</option><option>市场推广</option><option>广告</option></select><br/>
  公司介绍:<textarea></textarea><br/>
  营业执照上传:<input type="button" value="选择文件">未选择任何文件<br/>
  <input type="button" value="立即注册" style="background-color:red">
   
   
  </fieldset>
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
  </form>

猜你喜欢

转载自blog.csdn.net/weixin_42413689/article/details/80848753