Skip to content

Instantly share code, notes, and snippets.

@AndrewEddy
Created May 26, 2015 20:53
Show Gist options
  • Select an option

  • Save AndrewEddy/daddfd878599a946bd1b to your computer and use it in GitHub Desktop.

Select an option

Save AndrewEddy/daddfd878599a946bd1b to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Awesome Landing Page</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="nav-container">
<div class="nav-content">
<div class="col-3">
<div id="logo">
<a href="index.html"><img class="logo" alt="logo" src="images/logo-dark.png"></a>
</div>
</div>
<div class="col-3">Content</div>
<div class="col-3">Content</div>
</div>
</div>
</body>
</html>
body {
background-color: black;
padding: 0;
margin: 0;
}
.nav-container {
height: 80px;
background-color: #ffffff;
}
.col-3 {
float: left;
width: 31%;
}
.nav-content {
width: 80%;
margin: auto;
}
img.logo {
width: 143px;
height: 18px;
padding-top: 30px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment