zoukankan      html  css  js  c++  java
  • 作业,注册页面

     1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
     2 <html xmlns="http://www.w3.org/1999/xhtml">
     3 <head>
     4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
     5 <title>邮箱登陆页面</title>
     6 </head>
     7 <form>
     8 <table  align="center" width="600" height="900"border="0" bgcolor="#0099FF">
     9 <tr height="50">
    10 <td width="100">
    11 邮箱:
    12 </td>
    13 <td width="500">
    14 <input type="text" value="" />
    15 </td>
    16 </tr>
    17 <tr height="10" align="center">
    18 <td colspan="2">
    19 需要通过邮箱激活账户,不支持sohu、sougou的邮箱
    20 </td>
    21 </tr>
    22 <tr height="50">
    23 <td>
    24 登陆用户名:
    25 </td>
    26 <td>
    27 <input type="text" value="" />
    28 </td>
    29 </tr>
    30 <tr height="10" align="center">
    31 <td colspan="2">
    32 仅在登陆时使用,字数不少于4个字
    33 </td>
    34 </tr>
    35 <tr height="10">
    36 <td>
    37 密码:
    38 </td>
    39 <td>
    40 <input type="password" value="" />
    41 </td>
    42 </tr>
    43 <tr height="10" align="center">
    44 <td colspan="2">
    45 至少8位,必须包含字母,数字,特殊符号
    46 </td>
    47 </tr>
    48 <tr height="50">
    49 <td>
    50 确认密码:
    51 </td>
    52 <td>
    53 <input type="password" value="" />
    54 </td>
    55 </tr>
    56 <tr height="50">
    57 <td>
    58 性别:
    59 </td>
    60 <td>
    61 <input type="radio" name="sex"/>62 <input type="radio" name="sex" />63 </td>
    64 </tr>
    65 <tr height="50">
    66 <td>
    67 喜好:
    68 </td>
    69 <td>
    70 <select size="1">
    71 <option value="">听音乐</option>
    72 <option>打篮球</option>
    73 <option>打游戏</option>
    74 </select>
    75 </td>
    76 </tr>
    77 <tr height="50">
    78 <td colspan="2" align="center">
    79 <input type="button" value="注册" />
    80 </td>
    81 </tr>
    82 </table>
    83 </form>
    84 <body>
    85 </body>
    86 </html>
    View Code

  • 相关阅读:
    spacy 语言包离线安装
    linux 进程通信
    UNIX网络编程5 POSIX 消息队列
    UNIX网络编程 12 15共享内存区
    高级UNIX环境编程13 守护进程
    高级UNIX环境编程11 线程
    高级UNIX环境编程10 信号
    高级UNIX环境编程7 进程
    高级UNIX环境编程5 标准IO库
    高级UNIX环境编程4 文件和目录
  • 原文地址:https://www.cnblogs.com/beens/p/5298126.html
Copyright © 2011-2022 走看看