Page layout
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My First Page</title>
</head>
<body>
<header>
This is my Website Header
<nav>This is where the navigation links will be added</nav>
</header>
<main>
This is the main content of the page
<article>This is the article on the page</article>
<aside>Some additional but not relevant information</aside>
<section>Some more information about our website</section>
</main>
<footer>The footer of the web page</footer>
</body>
</html>
Last updated