You work in an interactive agency and your client has asked you to update their website to use HTML5 semantics to improve the website's SEO. You can find a simplified page layout in the image below and in the preview tab: code example
Example: html semantic layout
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='UTF-8'/>
<title>Semantic HTML</title>
</head>
<body>
<h1>Interneting Is Easy!</h1>
<ul>
<li><a href='#'>Home</a></li>
<li><a href='#'>About</a></li>
<li><a href='#'>Blog</a></li>
<li><a href='#'>Sign Up</a></li>
</ul>
</body>
</html>