WT1CS1-CHH/Website/index.html

30 lines
528 B
HTML

<!DOCTYPE HTML>
<meta charset="UTF-8">
<html>
<head></head>
<body>
<header>
<h1> Most important heading </h1>
<h3> Less important heading </h3>
</header>
<nav>
<ul>
<li><a href="#">1</a></li>
<li><a href="#">2</a></li>
</ul>
</nav>
<article>
<h1>The article title</h1>
<p>Contents of the article element </p>
</article>
<article>
<h1>A new article</h1>
<section>
<h1>Heading</h1>
<p>content or image</p>
</section>
</article>
<footer></footer>
</body>
</html>