semantiek
HTML5-layout elementen
<!DOCTYPE html>
<html lang="nl-BE">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML5-layout</title>
</head>
<body>
<header>
<nav></nav>
</header>
<main>
<section>
<article>
<h1>titel artikel 1</h1>
<p>tekst artikel 1</p>
</article>
<article>
<h1>titel artikel 2</h1>
<p>tekst artikel 2</p>
</article>
</section>
</main>
<aside></aside>
<footer></footer>
</body>
</html>Last updated
