Skip to content

Instantly share code, notes, and snippets.

@tomasovic
Created March 14, 2017 10:48
Show Gist options
  • Select an option

  • Save tomasovic/c70b9a5c8356e781e368dcedfccc4015 to your computer and use it in GitHub Desktop.

Select an option

Save tomasovic/c70b9a5c8356e781e368dcedfccc4015 to your computer and use it in GitHub Desktop.
html5
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Header, Footer, Navigation</title>
</head>
<body>
<div class="container">
<header>
<h1>My Website</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<div role="main">
Here is a list of my favorite songs.
</div>
<footer>
Copyright 2017
</footer>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment