1 2 3 4 5 男 6 女 7 中國 8 美國 9 13 14 15
1 <form> 2 <input type="text"> 3 <input type="password"> 4 <input type="hidden"> 5 <input type="radio" name="sex" value="男">男 6 <input type="radio" name="sex" value="女">女 7 <input type="checkbox" name="country" value="中國">中國 8 <input type="checkbox" name="country" value="美國">美國 9 <select> 10 <option value="1" selected>1</option> 11 <option value="2">2</option> 12 </select> 13 <textarea rows="8" cols="40"></textarea> 14 <input type="submit"> 15 </form>