表单标签



<html>
<head>
<body>









<form accept="xxx.php" method="get">
    <label for="text">用户名:label>  
    <input type="text" id="text" name="name" ><br />
    <label for="password">密码label> 
    <input type="password" name="pwd" maxlength="15" id="password"><br />
    性别:
        <label for="nan">label>
        <input type="radio" name="sex" value="男" id="nan"> 
        <label for="nv">label> 
        <input type="radio" name="sex" value="女" id="nv"> <br />
    爱好:
        吃饭<input type="checkbox" name="hobby" value="吃饭" checked="checked">
        睡觉<input type="checkbox" name="hobby" value="睡觉">
        打豆豆<input type="checkbox"name="hobby"><br />
    <input type="submit" value="免费注册"><br />
    <input type="reset" value="重置填写">
    <input type="button" value="获取短信验证码"><br />
    <input type="file"><br />


    
    籍贯:
    <select>
        <option>四川option>
        <option selected="selected">北京option>
        <option>山东option>
        <option>上海option>
        <option>广东option>
    select>
    <br />


今日反馈:
<textarea cols="100" rows="5">
    你是猪
textarea>
form>
body>
head>
html>