HTML

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <fieldset>
            <legend>用户信息</legend>
            <form>
                用户名:<input type="text" /><br />
                密码:<input type="password" /><br />
                出生日期:<input type="date" /><br />
                性别:男<input type="radio" name="sex" checked="checked"/>
                女<input type="radio" name="sex"/><br />
                爱好:足球<input type="checkbox" name="hobby" checked="checked"/>
                篮球<input type="checkbox" name="hobby"/>
                睡觉<input type="checkbox" name="hobby"/><br />
                颜色:<input type="color" /><br />
                范围:<input type="range" /><br />
                邮箱:<input type="email" /><br />
                学历:<select>
                    <option>大学</option>
                    <option>高中</option>
                    <option>小学</option>
                </select><br />
                <input type="submit" />
                <input type="reset"/>
            </form>
        </fieldset>
    </body>
</html>
初次接触,来一个小练习。虽然没打完吧。

posted on 2019-02-14 20:02  一梦南柯  阅读(96)  评论(0编辑  收藏  举报

导航