Html5标签和标题

时间:2015-11-22 20:45:37

标签: html5

我创建了这个结构:

<header>
  <h1>page name</h1>
  <nav>
    <ul>
      <li><a href="">Item 1</a></li>
      <li><a href="">Item 2</a></li>
    </ul>
  </nav>
</header>
<main>
  <h1>Latest Articles</h1>
  <article>
    <header>
      <h1>Article heading</h1>
      <time>25.5.2020</time>
    </header>
    <p>article content</p>
  </article>
  <article>
    <header>
      <h1>Article heading</h1>
      <time>25.5.2020</time>
    </header>
    <p>article content</p>
  </article>
</main>
<section>
  <h1>Most active users</h1>
  some content here
</section>
<section>
  <h1>latest forum post</h1>
  content here
</section>
<footer>
  copyright and bullshits
</footer>

我想问整个代码是否结构良好。如果我以正确的方式使用所有html5标签,那么它的标题。非常感谢您的回复。

1 个答案:

答案 0 :(得分:1)

结构似乎很好。但是,请记住,有几个不同的&#34;指南&#34;要遵循,即只要您以正确的方式实现HTML标记(正确的标记,而不是结构),您的页面仍将显示在不同的浏览器中。 我会说你不应该用HTML编写标准方法,但是你应该遵守W3C标准(因为浏览器通常也符合这些标准)。

在线测试你的html通过W3C免费验证服务,如果通过,那么剩下的只是&#34;常见做法&#34;以及关于如何组织事物的个人意见。

W3C Markup Validation

干杯