<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
</body>
</html>
<!DOCTYPE html>
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
</body>
</html>
<!DOCTYPE html>
<html lang="en-US">
<head>
</head>
<body>
</body>
</html>
<head>
<meta charset="utf-8">
<title>Hi all!</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="js/whoop.js"></script>
</head>
<body>
</body>
<!DOCTYPE html>
<html lang="en">
<head>
<title>An ID is unique</title>
</head>
<body>
<div id="unique">
</div>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<title>A class can be repeated</title>
</head>
<body>
<div class="repeat">
</div>
<div class="repeat">
</div>
</body>
</html>
<div></div>
<span></span>
<img>
<a href=""></a>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
<body>
<header>
<h1>Hi all!</h1>
</header>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
<body>
<main>
<!-- all other sections have to be placed in here -->
</main>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
<body>
<section>
<!-- all the content within this section has to be placed here -->
</section>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
<body>
<article>
<!-- all the content within this article has to be placed here -->
</article>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
<body>
<nav>
<ul>
<li><a href="#">Item 1</a></li>
<li><a href="#">Item 2</a></li>
<li><a href="#">Item 3</a></li>
<li><a href="#">Item 4</a></li>
</ul>
</nav>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
<body>
<section>
<aside>
<img src="images/competa_logo.svg" alt="Competa Logo" width="125" height="75">
</aside>
</section>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
<body>
<footer>
<!-- Place content of footer in here -->
</footer>
</body>
</html>