码迷,mamicode.com
首页 > Web开发 > 详细

HTML表单标签

时间:2020-11-06 02:37:19      阅读:25      评论:0      收藏:0      [点我收藏+]

标签:password   view   pass   button   北京   lazy   照片   inf   file   

技术图片

 

 

<!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>

 

HTML表单标签

标签:password   view   pass   button   北京   lazy   照片   inf   file   

原文地址:https://www.cnblogs.com/fangkun/p/13933833.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!