简易的注册网页

<!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>
 
原文地址:https://www.cnblogs.com/iillegal/p/9661552.html