zoukankan      html  css  js  c++  java
  • 前端学习(注册表)

    <!DOCTYPE html>

    <html>

        <head>

            <meta charset="utf-8" />

            <title>课堂学习</title>

                </head>

        <body>

            <fieldset>

                <legend>注册表单(必填)</legend>

            <form method="#">

                <p>

                   <label for="r_name">账号:</label>

                   <input type="text" id="r_name"  placeholder="请输入手机号或者邮箱" required/><span class="span_1" onfocus="oniput(this,1)"></span>

                </p>

                

                <p>

                    <label for="r_password">密码:</label>

                   <input type="password" id="r_password"  placeholder="请输入密码" required/><span class="span_3"></span>

                </p>

                

                <p>

                    <label for="r_repassword">确认密码:</label>

                   <input type="password" id="r_repassword" placeholder="确认密码" required/><span class="span_4"></span>

                </p>

                

            

                <p id="sex_p">

                    选择性别:<label for="man">男</label>

                    <input type="radio" id="man" name="sex"/>

                    <label for="woman">女</label>

                    <input type="radio" id="woman" name="sex"/>

                </p>

                

                <p id="botton">

                    <input type="submit" value="提交"/>

                    <input type="reset" />

                </p>

                

                

            </form>

            </fieldset>

        </body>

    </html>

  • 相关阅读:
    poj2431 Expedition 题解报告
    poj1017 Packets 题解报告
    UVA714 Copying books 题解报告
    poj3040 Allowance 题解报告
    CH134 双端队列 题解报告
    poj2259 Team Queue 题解报告
    CH128 Editor 题解报告
    基本数据结构专题笔记
    CH109 Genius ACM 题解报告
    线段树总结
  • 原文地址:https://www.cnblogs.com/misubishi/p/9656239.html
Copyright © 2011-2022 走看看