|属性| 说明 |
|-type-|-指定元素的类型。text、password、checkbox、submit、reset、file、hidden、image和button,默认为text-|
| name | 指定表单元素的名称 |
| value | 元素的初始值。type为radio时必须指定一个值 |
| size | 指定表单元素的初识宽度。当type为text或password时,表单元素的大小以字符为单位。对于其他类型,宽度以像素为单位 |
| maxlength | type或password时,输入的最大字符数 |
| checked | type为radio或checkbox,指定按钮是否被选中 |
为了防止不能显示将代码放在Java代码块中
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>登录注册</title> </head> <body> <h1>注册</h1> <!--表单form action:可以使网站,也可以是一个请求处理地址 method:post,get 提交方式 get 方式提交:我们可以在url中看到我们提交的信息,不安全,高效 post :比较安全,传输大文件 --> <form action="1.我的第一个网页.html" method="get"> <!-- 文本输入框 input type="text" value="臧臧好帅" 默认初始值 maxlength=“8” 最长能写几个字符 size=“30” 文本框的长度 --> <p>名字:<input type="text" name="username" value="臧臧" maxlength="8" size="30"></p> <p>密码:<input type="password" name="psw"></p> <!--单选框标签 input type=“radio” value :单选框的值 name :表示组 --> <p>性别: <input type="radio" value="boy" name="sex"/>男 <input type="radio " value="girl" name="sex">女 </p> <p> <input type="submit"> <input type="reset"> </p> </form> </body> </html>