网页编排最简单示例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>网页编排</title>
</head>
<body>
      <header>
          <h1>炉石传说砰砰计划</h1>
          <nav>
              <ul>
                  <li><a href="#">时间</a></li>
                  <li><a href="#">代理</a></li>
              </ul>
          </nav>
      </header>=
      <article>
          <hgroup>
              <h3>主标题</h3>
              <h4>副标题</h4>
          </hgroup>
          <p>文章正文</p>
          <section>
              <div>
                  <article>
                      <h3>评论人以及时间</h3>
                      <p>评论内容</p>
                  </article>
              </div>
          </section>
      </article>
      <footer>
          <small>法律声明</small>
      </footer>
</body>
</html>

猜你喜欢

转载自blog.csdn.net/qq_42036616/article/details/81604133
今日推荐