Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save tomasovic/ede92577ba438b320fe47c3b05b804c3 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 id="container">
<div id="header">
<h1>My Website</h1>
<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>
</div>
<div id="main">
Here is a list of my favorite songs.
</div>
<div id="footer">
Copyright 2017
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment