一个无卵用的注册表单
Posted xiaodaizi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一个无卵用的注册表单相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>注册表单V1.0</title> <style> body{ background-color:cornsilk; } </style> </head> <body"> <h1 style="color:coral" align="center">注册表单V1.0</h1> <p style="color:crimson">欢迎使用这个并没有什么乱用的注册表单,希望您使(qian)用(wan)愉(bie)快(yong)</p> <P>请输入您的注册信息</P> <form action="" method="get"> <label for="name">姓名:</label> <input type="text" name="name"/><br/> <label for="Sex">性别:</label> <select> <option value="male">男</option> <option value="female">女</option> </select><br/> <label for="birth">生日:</label> <input type="date" name="birth"><br/> <label for="mail">邮件:</label> <input type="mail" name="mail"/><br/> <label for="ID">账号:</label> <input type="text" name="ID"><br/> <label for="password">密码:</label> <input type="password" name="Password" maxlength="16"><br/> <input type="submit" name="submit" value="提交注册"> <input type="reset" name="reset" value="重新输入"> </form> </body> </html>