美文网首页
【HTML】H5标签

【HTML】H5标签

作者: 大Q本Q | 来源:发表于2019-06-19 18:09 被阅读0次
    
    <article>
        <header>
            <menu>
                <li><input type="checkbox" />Red</li>
                <li><input type="checkbox" />blue</li>
            </menu>
            <h2></h2>
            <p></p>
        </header>
        <article>
            <nav>tab</nav>
            <article>
                <section>
                    <h3></h3>
                    <p></p>
                </section>
                <section></section>
                <section></section>
            </article>
        </article>
        <aside></aside>
        <footer></footer>
    </article>
    
    
    <form>
        <fieldset>
            <legend>Personalia:</legend>
            Name: <input type="text" /><br />
            Email: <input type="text" /><br />
            birthday: <input type="text" />
        </fieldset>
    </form>
    <fieldset>
        <legend>健康信息:</legend>
        <form>
            <label>身高:<input type="text" /></label>
            <label>体重:<input type="text" /></label>
        </form>
    </fieldset>
    
    
    

    bdo跌倒文字的输出顺序

    <bdo dir="rtl">abcdefg</bdo>输出gfedcba
    <bdo dir="rtl">a<bdi>bcd<bdi>efg</bdo>输出gfebcda
    

    mark标记文本

    <mark>标记内容</mark>
    

    <summary> 标签包含 details 元素的标题,"details" 元素用于描述有关文档或文档片段的详细信息。

    <details>
        <summary>HTML 5</summary>
        This document teaches you everything you have to learn about HTML 5.
    </details>
    

    引用

    <p>WWF's goal is to:
        <q cite="http://www.wwf.org">
            build a future where people live in harmony with nature
        </q> we hope they succeed.
    </p>
    

    上标、下标

    <sub> 标签可定义下标文本。<sup> 可定义上标文本
    
    <p>
        <cite>《富春山居图》</cite>由黄公望始画于至正七年(1347),于至正十年完成。
    </p>
    

    相关文章

      网友评论

          本文标题:【HTML】H5标签

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