zoukankan      html  css  js  c++  java
  • 1-1、article元素

    示例一: 

      <article>
        <header>
          <h1>苹果</h1>
          <p>发表日期:<time pubdate>2017/07/02</time></p>
        </header>
        <p><b>苹果</b>,植物类水果</p>
        <footer>
          <p><small>公司所有</small></p>
        </footer>
      </article>

    示例二:

     

    <article>
        <header>
            <h1>苹果</h1>
            <p>发表日期:<time pubdate>2017/07/02</time></p>
        </header>
        <p><b>苹果</b>,植物类水果</p>
        <section>
            <h2>评论</h2>
            <article>
                <header>
                    <h3>发表者:小明</h3>
                    <p>
                        <time pubdate="" datetime="2017/07/02T21:04">1小时前</time>
                    </p>
                </header>
                <p>我喜欢苹果。</p>
            </article>
            <article>
                <header>
                    <h3>发表者:小红</h3>
                    <p>
                        <time pubdate="" datetime="2017/07/02T21:15">1小时前</time>
                    </p>
                </header>
                <p>我喜欢橘子不喜欢苹果。</p>
            </article>
        </section>
    </article>

    示例三:

    <article>
        <h1>我的水果机</h1>
        <object data="" type="">
            <param name="allowFullScreen" value="true">
            <embed src="#" width="600" height="395" type="">
        </object>
    </article>
  • 相关阅读:
    决策树
    训练/测试
    机器学习 标准差
    pandas01
    提交参数说明
    pandas_series02
    Yarn 模式
    词云图
    软件需求与分析课堂综合测试
    课堂测试10
  • 原文地址:https://www.cnblogs.com/webBlog-gqs/p/7107233.html
Copyright © 2011-2022 走看看