<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <!-- 把数据提交给web服务器需要使用表单标签:<form> --> <form> <p> <!-- for 根据id名给指定id的标签设置光标 --> <label for="name">用户名:</label> <input type="text" id="name"> </p> <p> <label for="">密码:</label> <input type="password"> </p> <p> <label for="">性别:</label> <input type="radio">男 <input type="radio">女 </p> <p> <label for="">爱好:</label> <input type="checkbox">美女 <input type="checkbox">学习 <input type="checkbox">打游戏 </p> <p> <label for="">照片:</label> <input type="file"> </p> <p> <label for="">个人描述:</label> <textarea name="" id="" cols="30" rows="10"></textarea> </p> <p> <label for="">籍贯:</label> <select name="" id=""> <option value="">北京</option> <option value="">成都</option> <option value="">深圳</option> <option value="">广州</option> </select> </p> <p> <input type="submit" value="提交"> <input type="reset" value="重置"> <input type="button" value="按钮"> </p> </form> </body> </html>