zoukankan      html  css  js  c++  java
  • 表单

    <!DOCTYPE HTML>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>表单标签</title>
    <style type="text/css">
     h2{
        font-size="12px";
        color:red;
        
    }
     </style>
    
    </head>
    <body>
    <h2>&nbsp;&nbsp;&nbsp;&nbsp;用户登录</h2>
    <form method="post" action="save.php">
      &nbsp;账号: 
        <input  type="text"  name="myName" />
        <br>
      &nbsp;密码: 
        <input  type="password"  name="pass" /><br>
        <label>&nbsp;性别:</label>
        <label></label>
        <input type="radio" value="1"  name="gender" />
        <label></label>
        <input type="radio" value="2"  name="gender" /><br>
        <p>
        &nbsp;你喜欢的水果(单选)<br>
        <input type="radio" name="fruit" value="苹果">苹果
        <input type="radio" name="fruit" value="桃子">桃子
        <input type="radio" name="fruit" value="西瓜">西瓜
        <input type="radio" name="fruit" value="以上都不喜欢">以上都不喜欢<br>
        </p>
        <div>
        &nbsp;你喜欢的运动(多选)<br>
        <input type="checkbox" name="sport1" value="跑步">跑步
        <input type="checkbox" name="sport2" value="游泳">游泳
        <input type="checkbox" name="sport3" value="登山">登山
        <input type="checkbox" name="sport4" value="自行车">自行车
        <input type="checkbox" name="sport5" value="乒乓球">乒乓球
        </div>
        <input type="submit" value="确定"  name="submit" />
        <input type="reset" value="重置" name="reset" />
    </form>  
    </body>
    </html>
  • 相关阅读:
    1295: [SCOI2009]最长距离
    [vijos p1028] 魔族密码
    HJ浇花
    1060: [ZJOI2007]时态同步
    1816: [Cqoi2010]扑克牌
    1800: [Ahoi2009]fly 飞行棋
    4300: 绝世好题
    1237: [SCOI2008]配对
    1801: [Ahoi2009]chess 中国象棋
    1189: [HNOI2007]紧急疏散evacuate
  • 原文地址:https://www.cnblogs.com/ljming/p/9660276.html
Copyright © 2011-2022 走看看