表格

来源:互联网 发布:ubuntu上安装mysql5.7 编辑:程序博客网 时间:2024/04/29 08:00

一、

1. # &nbsp:  空格
1. &lt  :   <
1. &gt:  >
2. &copy:   版权符号
3. &reg: 注册符号
4. &amp: and符号
5. &#151:长破折号
## 表单 ##
代码:
    <meta charset="utf-8">
</head>
<body>
<form action="form_action.asp" enctype="text/plain">
    <p> First name: <input type="text"style="" /></p>
    <p>密&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp码: <input type="password" value="" maxlength=""/></p>
    <input type="submit" value=提交" />&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp
    <input type="reset" value="取消">
</form>
<form action="form_action.asp" method="post">
    <p>姓名: <input type="text" name="fname" /></p>
    <p>用户名: <input type="text" name="lname" /></p>
       密码  <input type="password" value="" /><br/>
    确认密码 <input type="password" value="" /><br/>
    邮箱:  <input type="text" name="lname" /><br/>
    电话:  <input type="text"  name="number"><br/>
    性别:  <input type="radio" name="SEX" >男<input type="radio" name="SEX" >女<br/>
    爱好: <input type="checkbox"name="aihao"> 打球 <input type="checkbox"name="aihao"> 唱歌<br/>

    地址:  <input type="text" name="lname" />                          <br/>
    上传头像:<input type="file">   <br/>
     <input type="submit"  value="提交"/> <input type="reset"  value="重置"/>
</form>

0 0
原创粉丝点击