zoukankan      html  css  js  c++  java
  • 简易的注册网页

    <!doctype html>
    <!DOCTYPE html>
    <html>
    <head>
     <title>注册</title>
     <style>
         body
         {
          background-color: #F0F0F0 ;
         }
         table
         {
          margin: auto;
           30%;
         }
         div
         {
          margin: auto;
           30%;
         }
         #a
          {
          margin: auto;
           30%;
           }
           input.r2
           {
             15px;
           }
           img
           {
            margin: 10px
           }
     }
       
     </style>
    </head>
    <body>
     <h1 style="text-align: center;">欢迎注册</h1>
     <form>
     <table>
      <tr>
       <td>email:</td>
       <td><input type="email" name="email"></td>
      </tr>
      <tr>
       <td>tel:</td>
       <td><input type="tel" name="tel"></td>
      </tr>
      <tr>
       <td>user:</td>
       <td><input type="text" name="text"></td>
      </tr>
      <tr>
       <td>密码:</td>
       <td><input type="password" name="ps"></td>
      </tr>
      <tr>
       <td>确认密码:</td>
       <td><input type="password" name="ps"></td>
      </tr>
     </table>
     <div class="b">
       sex:
       <ul>
        <li><input type="radio" name="r1">male</li>
        <li><input type="radio" name="r1">female</li>
       </ul> 
     </div>
     <div id="a"><input type="checkbox" name="c2" class="r2">我已同意《cc协议》;</div>
     <div class="b">
      <input type="reset" name="button" value="reget">
      <input type="submit" name="button" value="submit" size="2">
     </div>
     <div>
      <hr>
     <p>第三方登陆:</p>
     <a href="https://web2.qq.com/"><img src="../resource/qq.jpg" width="60" height="50"></a>
     <a href="https://wx2.qq.com/"><img src="../resource/wc.jpg" width="50" height="50"></a>
     <a href="https://weibo.com/"><img src="../resource/wb.jpg" width="50" height="50"></a>
        </div>
     </form>
    <body>
    </html>
     
  • 相关阅读:
    new SqlSessionFactoryBuilder().build(inputStream, properties)
    PooledDataSource--mybatis-3-mybatis-3.2.3
    MySQL 日期时间 专题
    使用httpclient抓取时,netstat 发现很多time_wait连接
    ajax提交整个form表单
    jquery 提交数据
    用form表单实现Ajax---post提交
    HTML 5 的data-* 自定义属性
    jquery序列化form表单使用ajax提交后处理返回的json数据
    jquery实现ajax提交form表单的方法总结
  • 原文地址:https://www.cnblogs.com/iillegal/p/9661552.html
Copyright © 2011-2022 走看看