美文网首页
h5新增元素&废弃元素

h5新增元素&废弃元素

作者: 可樂Cola | 来源:发表于2018-12-27 16:10 被阅读0次

    h5新增元素

    <header>头部</header>
    
    <nav>
            <a href="index.html">1</a>
            <a href="bgg.html">2</a>
            <a href="game.html">3</a>
    </nav>
    nav标签代表导航链接的部分,并不一定要使用nav元素
    <section>代表一个独立的块</section>
    <article>代表一个独立的内容</article>
    <aside>代表和主要内容相关的信息,定义侧边栏</aside>
    <footer>底部</footer>
    <hgroup>
            <h1>一级标题</h1>
            <h2>我是和一级标题有关的二级标题</h2>
    </hgroup>
    hgruop标签:将所有标题之间有关的标题联系起来
    <figure>
      <figcaption>用来说明此图</figcaption>
      <img src="footer.png"  />
    </figure>
    

    h5新增表单元素

     <input type="color" name="" id="" value="" />
     <input type="date" name="" id="" value="" />
     <input type="datatime" name="" id="" value="" />
     <input type="month" name="" id="" value="" />
     <input type="week" name="" id="" value="" />
     <input type="time" name="" id="" value="" />
    <input type="email" name="" id="" value="" />
    <input type="rang" name="" id="" value="" />
    <input type="search" name="" id="" value="" />
    <input type="url" name="" id="" value="" />
    <input type="Tel" name="" id="" value="" />
    

    h5废弃元素

    <font></font>
    <bigfont></bigfont>
    <big></big>
    <s></s>
    <u></u>
    <tt>定义打字机文本</tt>
    <conter>居中</conter>
    

    相关文章

      网友评论

          本文标题:h5新增元素&废弃元素

          本文链接:https://www.haomeiwen.com/subject/kftrlqtx.html