HTML5语义化标签综合基础案例

来源:互联网 发布:js new对象删除 编辑:程序博客网 时间:2024/06/05 19:18
<!DOCTYPE html><html lang="zh-CN">  <head>    <meta charset="utf-8">    <meta http-equiv="X-UA-Compatible" content="IE=edge">    <meta name="viewport" content="width=device-width, initial-scale=1">    <title>Bootstrap 101 Template</title>    <!-- Bootstrap -->  </head>  <body>    <header>        <h1>English</h1>        <nav>            <ul>                <li><a href="index.html">首页</a></li>                <li><a href="index.html">活动</a></li>                <li><a href="index.html">话题</a></li>                <li><a href="index.html">社区</a></li>            </ul>        </nav>    </header>    <section id="idea">        <div>            <h2>English : </h2>            <p>                Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.            </p>        </div>    </section>    <section id="activity">        <div class="up">            <div id="calendar" class="left_part"></div>            <div id="info" class="right_part"></div>            <div id="bulletin">                <h3>公告栏</h3>                <p>The standard Lorem Ipsum passage, used since the 1500s</p>            </div>        </div>        <div class="down">            <h2>发现活动</h2>            <div id="act_slides"></div>        </div>    </section>    <section id="post">        <article id="posts">            <h3>社区文章</h3>            <article class="item">                <figure>                    <img />                </figure>                <div class="header">                    <span>                        作者:Tom<time datatime="2017-10-16 19:48" pubdate>2017-10-16 19:48</time>                    </span>                </div>                <div class="body"></div>                <div class="footer"></div>            </article>        </article>        <aside id="others">Where does it come from?</aside>    </section>    <footer>        <ul></ul>        <address></address>    </footer>  </body></html>
原创粉丝点击