HTML表单页面
<form action="submit.PHP" method="post">
<p>
<label for="username">用户名:</label>
<input type="text" name="username" id="username">
</p>
<p>
<label for="password">密码:</label>
<input type="password" name="password" id="password">
</p>
<p>
<label for="gender">性别:</label>
<input type="radio" name="gender" value="male" id="male"><label for="male">男</label>
<input type="radio" name="gender" value="female" id="female"><label for="female">女</label>
</p>
<p>
<input type="submit" value="提交">
<input type="reset" value="重置">
</p>
</form>
以上是使用HTML创建表单
页面的基本
代码。其中,form
标签用于创建表单,通过action
属性指定表单提交的路径,method
属性指定提交方式为post。
在form
标签内,使用p
标签来对表单元素进行分组,使用label
标签对表单元素进行标注,使用input
标签来创建表单元素。其中,type
属性指定元素类型,name
属性指定元素
名称,id
属性用于在label
标签内指定元素。
在提交按钮和重置按钮的
标签内分别使用input
标签,通过type
属性分别指定为submit和reset。
最后,使用pre
标签将
HTML代码呈现出来,以表示尖括号,通过编码实现
标签和
内容的转义。