0
我創造了這個結構: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標籤,並且標題如此。非常感謝回覆。