其他分享
首页 > 其他分享> > HTML标签以及HTML新增标签和扩展

HTML标签以及HTML新增标签和扩展

作者:互联网

    <!-- 块级 -->
    <div></div>
    <p></p>
    <h1></h1>
    <h6></h6>
    <ul>
    <li></li>
    </ul>
    <form action=""></form>
    <table></table>
    <!-- h5新增块元素-->
    <section></section>
    <main></main>
    <header></header>
    <aside></aside>
    <footer></footer>
    <nav></nav>

    <!-- 行内元素 -->
    <span></span>
    <img src="" alt="">
    <a href=""></a>

    <!-- 行内块元素 -->
    <img src="" alt="">
    <button></button>
    <input type="text">
    <select></select>
    <label for=""></label>
    <textarea name="" id="" cols="30" rows="10"></textarea>

    <!-- HTML5新增 -->

    <!-- 侧边栏标签 -->
    <aside></aside>

    <!-- 头部标签 -->
    <header></header>

    <!-- 尾部标签 -->
    <footer></footer>

    <!-- 导航标签 -->
    <nav></nav>

    <!-- 文章区域标签 -->
    <article></article>

    <!-- 定义文档区域标签 -->
    <section></section>

    <!-- input新增属性 -->
    <!-- 上传文件 multiple可以上传多个文件 -->
    <input type="file" multiple>

    <!-- url类型 -->
    <input type="url" autofocus required>

    <!-- 日期类型 -->
    <input type="date">

    <!-- 时间类型 -->
    <input type="time">

    <!-- 数字类型 -->
    <input type="number">

    <!-- 手机号类型 -->
    <input type="tel">

    <!-- 取色板 -->
    <input type="color">

    <!-- 搜索类型 -->
    <input type="search">

    <!-- 邮件类型 -->
    <input type="email">
    

 

标签:标签,新增,HTML,扩展,以及
来源: https://www.cnblogs.com/WuHuuuu/p/16180260.html