前端 | 2

来源:互联网 发布:艾珺的淘宝店 编辑:程序博客网 时间:2024/04/29 17:54
<form action="http://www.baidu.com">    <fieldset>        <legend>helloword</legend>        <p>账号<input type="text"></p>        <p>密码<input type="password"></p>        <p>性别            <input type="radio" name="gender" checked="checked"><input type="radio" name="gender"></p>        <p>爱好            <input type="checkbox">读书            <input type="checkbox">看报纸        </p>        <p>简介            <br>            <textarea cols="20" rows="3"></textarea>        </p>        <p>邮箱            <input type="email">        </p>        <p>手机            <input type="number">        </p>        <p>生日            <input type="date">        </p>        <p>            <input type="submit" value="注册">            <input type="reset" value="清空">        </p>    </fieldset></form>
原创粉丝点击