Answers for "HTML5 Page structure"

0

HTML5 Page structure

<header>
<div id="logo">HTML</div>
<nav>  
	<ul>
		<li><a href="/">Home</a>
		<li><a href="/link">Page</a>
	</ul>
</nav>
</header>
<main role="main">
<article>
	<h2>Title 1</h2>
	<p>Content 1</p>
</article>
<article>
	<h2>Title 2</h2>
	<p>Content 2</p>
</article>
</main>
<section>
A group of related content
</section>
<aside>
Sidebar
</aside>
<footer>
<p>© HTML CheatSheet</p>
<address>
	Contact <a href="mailto:[email protected]">me</a>
</address>
</footer>
Posted by: Guest on August-29-2021

Browse Popular Code Answers by Language