首页 > Web开发 > 详细

0基础学习前段历程2 第一门需要掌握的前端技术HTML5+CSS3 html表单类

时间:2020-03-08 13:44:56      阅读:50      评论:0      收藏:0      [点我收藏+]

<!-- 表单类 -->

    <label>姓名</label>
    <input type="text"> 文本框
    <input type="password"> 密码框
    <input type="button" value="按钮">
    <input type="radio" name="" id=""> 单选
    <input type="checkbox"> 多选

 

    <textarea>文本域</textarea>

 

    <select name="" id="">
        <option value="">北京</option>
    </select>
    <input type="submit" value="提交按钮">
    <input type="reset"> 重置
    <input type="search" name="" id=""> 搜索框
    <input type="color" name="" id=""> 颜色
    <input type="email" name="" id=""> 邮件
    <input type="file" name="" id=""> 上传文件
    <input type="tel" name="" id=""> 电话
    <input type="number" name="" id=""> 数字
    <input type="date" name="" id=""> 日期
    <input type="range" name="" id=""> 范围
    <button>按钮</button>

 

```

0基础学习前段历程2 第一门需要掌握的前端技术HTML5+CSS3 html表单类

原文:https://www.cnblogs.com/wrfzxyy/p/12441897.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!